Java メイン関数おやくそく
関連タイピング
-
Javaプログラミングにおける超入門タイピング練習です.
プレイ回数4604 短文英字90秒 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数1937 610打 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万 1071打 -
[010]JAVA-SHI 用語
プレイ回数225 英字60秒 -
プレイ回数307 英語長文180秒
-
プログラムjava言語のタイピング練習
プレイ回数190 英語長文289打 -
Javaの基本構文です
プレイ回数2492 長文英字90秒 -
プログラムjava言語のタイピング練習
プレイ回数194 短文60秒
問題文
(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}
(})
}