Java メイン関数おやくそく

関連タイピング
-
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万1071打 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数311610打 -
javaやpythonのコードを打つタイピングです
プレイ回数779長文60秒 -
JAVAの練習用です。
プレイ回数1197長文120秒 -
プログラムjava言語のタイピング練習
プレイ回数192短文60秒 -
プログラムjava言語のタイピング練習
プレイ回数186英語長文289打 -
Javaのメソッド名によく使われる接頭辞
プレイ回数2149短文英字60秒 -
変数名、関数名で良く使われる英語の形容詞にチャレンジ!
プレイ回数257英語180秒
問題文
(public class Main {)
public class Main {
( public static void main(String[] args) {)
public static void main(String[] args) {
( System.out.println("Hello world.\n");)
System.out.println("Hello world.\n");
( })
}
(})
}
(public class HelloWorld {)
public class HelloWorld {
( public static void main(String[] args) {)
public static void main(String[] args) {
( String helloStr = "Hello";)
String helloStr = "Hello";
( String spaceStr = " ";)
String spaceStr = " ";
( String worldStr = "World";)
String worldStr = "World";
( System.out.println(helloStr + spaceStr + worldStr);)
System.out.println(helloStr + spaceStr + worldStr);
( })
}
(})
}
(public class Kakezan {)
public class Kakezan {
( public static void main(String[] args) {)
public static void main(String[] args) {
( for (int row = 1; row <= 9; ++row) {)
for (int row = 1; row <= 9; ++row) {
( for (int col = 1; col <= 9; ++col) {)
for (int col = 1; col <= 9; ++col) {
( System.out.printf("%3d", row * col);)
System.out.printf("%3d", row * col);
( })
}
( System.out.println();)
System.out.println();
( })
}
(\t})
\t}
(})
}