新手入门 菜鸟代码: 菜鸟虽菜 ..........
class Work71 {
public static void main(String[] args) {
int x = 0;
int y = 0;
int a = 0;
for ( x = 2;x <=100 ;x++ ) { //1 - 100的数
int c = 0; //计数 初始化
for (y = 1;y <=x ;y++ ) { //
if (x % y==0) {
c++; //记录能被 x整除的个数
}
if (c==2&&y==x) { // 输出素数
System.out.print(x+"\t");
a++; //记录素数的个数
}
if (a % 5==0&&y==x) { //每满5个素数就在第五个素数后面转行
System.out.println();
}
}
}
System.out.println(a);
}
}