Java forで配列を処理する例 #--Java 2025年03月20日 1.サンプルint nums[] = {1,2,3,4,5} ;for(var x : nums){ System.out.println(x);}2.実行結果12345が出力されます。 PR