2017年5月16日

100以内素数

摘要: public class PRIME {public static void main(String[] args) {int i,m=1;do{i=2;while(i<m){if(m%i==0)break;i++;}if(i==m)System.out.println(m);m++;}while( 阅读全文

posted @ 2017-05-16 16:13 allhaillelouch 阅读(113) 评论(0) 推荐(0) 编辑

【完善】

摘要: public class MyDate { private int year,month,day; private static int thisYear; static { thisYear=2012; } public MyDate(int year,int month,int day) { t 阅读全文

posted @ 2017-05-16 16:11 allhaillelouch 阅读(123) 评论(0) 推荐(0) 编辑

导航