我是 Java 新手,我在互联网上搜索了一个小时的答案,但找不到任何东西。
我正在尝试创建一个以这种格式显示前 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);
}
}
}
}