練習問題/解答例/ループ練習2/JAVA
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
public class Hellows {
public static void main(String[] args) {
try {
int j = Integer.parseInt(args[0]);
for (int i = 0; i < j; i++) {
System.out.println("Hello World! " + (i+1));
}
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println(" java Hellows 1 のように実行して...
}
}
}
終了行:
public class Hellows {
public static void main(String[] args) {
try {
int j = Integer.parseInt(args[0]);
for (int i = 0; i < j; i++) {
System.out.println("Hello World! " + (i+1));
}
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println(" java Hellows 1 のように実行して...
}
}
}
ページ名: