码迷,mamicode.com
首页 > 其他好文 > 详细

100以内素数

时间:2018-03-22 10:54:21      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:blog   []   ring   gpo   print   stat   str   bre   pos   

public class Sushu {
public static void main(String args[]) {

for(int i=1;i<=100;i++) {
for(int j=2;j<=i-1;j++) {
if(i%j==0) break;
if(j>=i-1) {
System.out.println(i);
}
}
}
}
}

100以内素数

标签:blog   []   ring   gpo   print   stat   str   bre   pos   

原文地址:https://www.cnblogs.com/singlexc/p/8621385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!