VBAStandard_Lesson

背景
投稿者投稿者nekoいいね0お気に入り登録
プレイ回数1098難易度(3.8) 713打 長文 英字
タグVBA
順位 名前 スコア 称号 打鍵/秒 正誤率 時間(秒) 打鍵数 ミス 問題 日付
1 あいかわようた 4335 C+ 4.5 95.8% 91.8 416 18 20 2026/01/11
2 aokihosi 1200 G+ 1.3 91.3% 318.2 422 40 20 2026/01/25

関連タイピング

問題文

ふりがな非表示 ふりがな表示
(byval) ByVal (byref) ByRef (dim a as string) Dim A As String (dim a(3) as string) Dim A(3) As String (split(”x-y-z”,”-”)) Split("X-Y-Z","-") (for i = 0 to ubound(a)) For i = 0 To UBound(A) (redim a(10)) ReDim A(10) (redim preserve a(10)) ReDim Preserve A(10) (dim a as range) Dim A As Range (dim a as worksheet) Dim A As Worksheet
(dim a as workbook) Dim A As Workbook (dim a as object) Dim A As Object (set a = range(”a1”)) Set A = Range("A1") (set a = nothing) Set A = Nothing (dim a as long,b as long,c as long) Dim A As Long,B As Long,C As Long (for i 0 to 5) For i 0 To 5 (exit sub) Exit Sub (select case end select) Select Case End Select (case ”ok” case else) Case "OK" Case Else (do while range(”a1”) = ”” loop) Do While Range("A1") = "" Loop
など
(do until range(”a1”) <> ”” loop) Do Until Range("A1") <> "" Loop (do loop while range(”a1”) = ””) Do Loop While Range("A1") = "" (do loop until range(”a1”) <> ””) Do Loop Until Range("A1") <> "" (for each c in range(”a1:a5”) next c) For Each C In Range("A1:A5") Next C (for each s in selection next s) For Each C In Selection Next C (if ”a” or ”b” then end if) If "A" Or "B" Then End If (if ”a” and ”b” then end if) If "A" And "B" Then End If (workbooks.open ”c:¥path¥book.xlsx”) Workbooks.Open "C:\Path\BOOK.xlsx" (activeworkbooks.saveas ”book.xlsx”) ActiveWorkbooks.SaveAs "BOOK.xlsx" (format(now,”yyyymmdd”)) Format(Now,"yyyymmdd") (filecopy ”org.xlsx”,”new.xlsx”) FileCopy "Org.xlsx","New.xlsx" (mkdir ”c:¥path¥newdir”) MkDir "C:\Path\NewDir" (worksheetfunction.sum(range(”a1:c5”))) WorksheetFunction.Sum(Range("A1:C5")
問題文を全て表示 一部のみ表示 誤字・脱字等の報告