2017年6月25日

my date

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

posted @ 2017-06-25 17:57 Buddhist 阅读(251) 评论(0) 推荐(0) 编辑

2017年5月23日

小计算器显示

摘要: import java.awt.*; public class LoginFrame { public static void main(String arg[]) { Frame f=new Frame ("计算器"); f.setLayout(new GridLayout(6,4)); //容器 阅读全文

posted @ 2017-05-23 16:35 Buddhist 阅读(141) 评论(0) 推荐(0) 编辑

2017年4月13日

杨辉三角

摘要: public class yanghuisanjiao{ public static void main(String[] args) { int i, j, n = 8, l, r; int a[] = new int[9]; System.out.println(1); for (i = 1; 阅读全文

posted @ 2017-04-13 16:58 Buddhist 阅读(99) 评论(0) 推荐(0) 编辑

2017年3月21日

100以内的素数。

摘要: public class prime number{ public static void main(string args[ ]){ int sum,i; for(sum=2;sum<=100; sum++) { for(i=2; i<=sum/2; i++) { if(sum%i==0) bre 阅读全文

posted @ 2017-03-21 09:02 Buddhist 阅读(126) 评论(0) 推荐(0) 编辑

99乘法。

摘要: public class MutiTable{ public static void main (string [ ]args){ for (int i=1;i<=9;i++){ for(int j=1;j<=i; j++) system.out.print(" "+i+"*"+j+"="+i*j) 阅读全文

posted @ 2017-03-21 08:49 Buddhist 阅读(188) 评论(0) 推荐(0) 编辑

导航