java打数
javaやpythonのコードを打つタイピングです
java打数(じゃばだす)
javaやpythonのコードを打つタイピングです
javaやpythonのコードを打つタイピングです
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | ku | 5366 | 天才プログラマー | 5.3 | 100% | 60.0 | 322 | 0 | 13 | 2026/02/23 |
関連タイピング
-
Pythonプログラムを打ちまくる
プレイ回数1万 英語長文60秒 -
C#プログラマ向けタイピング
プレイ回数1.2万 英字60秒 -
html5の暗記用 <>を省いています
プレイ回数776 英語374打 -
競技プログラミングに特化したc++コードのタイピングです。
プレイ回数3005 英語長文300秒 -
コマンドラインやプログラミング言語のタイピング練習用
プレイ回数2546 英語長文90秒 -
HTML&CSSを忘れないために
プレイ回数2.9万 英語長文759打 -
JavaScript暗記用です
プレイ回数3647 英語長文841打 -
はじプロのノードンを打ち切れ!
プレイ回数96 1575打
問題文
ふりがな非表示
ふりがな表示
(print(”helloworld”))
print("HelloWorld")
(name = impout(”なまえはなんですか?”))
name = impout("名前は何ですか?")
(import time)
import time
(import tkinter)
import tkinter
(def code())
def code()
(for num in range(10):)
for num in range(10):
(system.out.println(”hello, world!”);
)
System.out.println("Hello, World!");
(int x = 5; system.out.println(x);)
int x = 5; System.out.println(x);
(if(true) system.out.println(”true”);)
if(true) System.out.println("True");
(x = 5; print(x))
x = 5; print(x)
(for i in range(5): print(i))
for i in range(5): print(i)
(if true: print(”true”))
if True: print("True")
(s = ”python”; print(s)
)
s = "Python"; print(s)
(a, b = 5, 10; print(a + b)
)
a, b = 5, 10; print(a + b)
(list = [1, 2, 3]; print(list)
)
list = [1, 2, 3]; print(list)
(x = 3; y = 7; print(x * y)
)
x = 3; y = 7; print(x * y)