私はJavaが初めてで、インターネットで1時間答えを探していましたが、何も見つかりませんでした。
最初の 100 個の素数をこの形式で表示するプログラムを作成しようとしています。
First One Hundred Primes:
2 3 5 7 11 13 17 19 23 29
31 37 41 43 47 53 59 61 67 71
73 79 83 89 97 101 103 107 109 113
127 131 137 139 149 151 157 163 167 173
179 181 191 193 197 199 211 223 227 229
233 239 241 251 257 263 269 271 277 281
283 293 307 311 313 317 331 337 347 349
353 359 367 373 379 383 389 397 401 409
419 421 431 433 439 443 449 457 461 463
467 479 487 491 499 503 509 521 523 541
編集: ^ この形式も右揃えにする必要があります。
コンソールで実行しようとしたときに何も表示されない理由がわかりません。いいえ、私のコードは完全には完成していません。表示されない理由と、私が間違ったことを教えてください。:)
これは今私のコードです:
public class PrimeNumbers {
public static void main(String[] args) {
final int DIVISOR = 1;
boolean isPrime;
int test1 = 0;
int test2 = 0;
int num = 1;
int count = 0;
while(count < 101) {
test1 = num/DIVISOR; //divides number by 1
test2 = num%num; //gets remainder of number
if (test1 == num && test2 == 0 && num > 1) //checks if test 1 is the same as num, test2 equals to 0 and if num is greater than 1
isPrime = true;
else
isPrime = false;
if (isPrime == true) {
System.out.format("%3.3f");
System.out.println("First One Hundred Primes:");
System.out.print(num);
}
}
}
}