java打数

javaやpythonのコードを打つタイピングです
順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
---|---|---|---|---|---|---|---|---|---|---|
1 | ku | 5533 | 天才プログラマー | 5.5 | 99.7% | 60.0 | 333 | 1 | 14 | 2025/01/10 |
関連タイピング
-
全記号数字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数6475英語長文120秒 -
プレイ回数2755英語長文120秒
-
正解のを切れ
プレイ回数104短文かな125打 -
プレイ回数2574短文9打
-
Javaプログラミングにおける超入門タイピング練習です.
プレイ回数4184短文英字90秒 -
マイクラの単語でタイピング 20問
プレイ回数1万短文444打 -
プログラミング用のタイピング練習
プレイ回数4872英語長文300秒 -
Pythonで初心者が使いそうなワードのタイピング
プレイ回数463英語30秒
問題文
(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)