?? primes.java
字號(hào):
// control/Primes.java
// TIJ4 Chapter Control, Exercise 4, page 139
// Write a program that uses two nested for loops and the modulus operator (%)
// to detect and print prime numbers.
public class Primes {
public static void main(String[] args) {
for(int i = 1; i < 1000; i++ ) {
int factors = 0;
for(int j = 1; j < (i + 2)/2; j++ ) {
if((i % j) == 0) factors++;
}
if(factors < 2) System.out.println(i + " is prime");
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -