标签:设定 string div ack ret i++ color str nbsp
求100以内的素数,会定义数组了
package xxx; public class abc { public static void main(String args[]) { int[] a = new int[120];//设定一个100以内的数组 for(int i=2; i <= 100; i++) { int x=2; x=panDuan(i); if(x==1) System.out.print(i+" "); //若为1,则为素数。 } } public static int panDuan(int a1) { int re = 1; for(int j=2; j<a1; j++) { if(a1%j==0) { re = 0; break; } } return re; } }
标签:设定 string div ack ret i++ color str nbsp
原文地址:https://www.cnblogs.com/sakuraXiYue/p/9693912.html