public class Prime {
//判断是否是素数的方法
public static Boolean Prime(int n) {
for (int i = 2; i < Math.sqrt(n); i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
public static void main(String[] args) {
System.out.print("素数有:");
for(int j= 100;j<=200;j++){
if(Prime(j)){
System.out.print(j+" ");
}
}
}
}
输出的结果是:
素数有:101 103 107 109 113 121 127 131 137 139 149 151 157 163 167 169 173 179 181 191 193 197 199
public class b {
public static void main(String[] args) {
int sum = 0;
for (int i = 101; i <= 200; i++)
for (int j = 2; j <= i; j++) {
if (i % j == 0 && i == j) {
sum++;
System.out.println(i);
} else if (i % j == 0 && i != j)
break;
}
System.out.println("101-200之间有:" + sum + "个素数");
}
}
发不了代码...给你图吧
希望可以帮助到你。
public class Test1 {
/**
* @param args
*/
public static void main(String[] args) {
int count=0;
for(int i=100;i<=200;i++){
count=0;
for(int j=2;j if(i%j==0){
count++;
}
}
if(count==0)
System.out.println(i);
}
}
}
很简单的,两个循环搞定。