java打数

javaやpythonのコードを打つタイピングです
関連タイピング
-
Pythonプログラムを打ちまくる
プレイ回数6028英語長文60秒 -
C言語を用いた記号・数字のタッチタイピング練習です。
プレイ回数1575英語長文220打 -
JAVAの練習用です。
プレイ回数1206長文120秒 -
全記号数字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数6797英語長文120秒 -
Pyhonのプログラミングで使いそうな単語・記号を集めました
プレイ回数420英語短文30秒 -
マイクラの単語でタイピング 20問
プレイ回数1万短文444打 -
Pythonで初心者が使いそうなワードのタイピング
プレイ回数465英語30秒 -
記号はプログラミングなどに使うよ
プレイ回数1560短文記号43打
問題文
(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)