Java メイン関数おやくそく
関連タイピング
-
プレイ回数33万1071打
-
プレイ回数93長文60秒
-
プレイ回数349長文120秒
-
プレイ回数3435短文英字90秒
-
プレイ回数47短文かな30秒
-
プレイ回数131英語60秒
-
プレイ回数303英語長文143打
-
プレイ回数1701英語561打
問題文
(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}
(})
}