Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはかなり簡単な質問だと思いますが、プログラミングについてはかなり錆びています。14859 から 26551 までのすべての数値を 13 のセットで表示するコードを作成する必要があります。
これまでのところ、すべての数値を表示する通常の for ループしかありません。13 のセットを取得する方法がわかりません。
for(i=14859; i < 26551; i++){ System.out.println(i); }
for(int i=14859; i < 26551; i++) System.out.print(((i % 13 != 0) ? ", " + i : "\n"));