太甲

 

2017年7月9日

计算器窗口关闭

摘要: import java.awt.*;import java.awt.BorderLayout;import java.awt.Button;import java.awt.Frame;import java.awt.event.WindowEvent;import java.awt.event.Wi 阅读全文

posted @ 2017-07-09 11:51 太甲 阅读(215) 评论(0) 推荐(0) 编辑

计算器

摘要: import java.awt.*; 1.实现简单的计算器界面 2.用到布局管理器中的一些常用的,如GridLayout,FlowLayoutpublic class LoginFrame extends Frame{ public LoginFrame() { super("计算器"); this 阅读全文

posted @ 2017-07-09 11:48 太甲 阅读(106) 评论(0) 推荐(0) 编辑

2017年5月15日

完善类例题3.2

摘要: package mydate; public class mydate {private int year,month,day;private static int thisYear; static {thisYear=2014;}public mydate(int year,int month,i 阅读全文

posted @ 2017-05-15 23:35 太甲 阅读(98) 评论(0) 推荐(0) 编辑

2017年3月27日

Y

摘要: package 杨辉三角;public class Y { public static void main(String arg[]){ int a[][]; a=new int[5][5]; int i,j; for(i=0;i<5;i++){ for(j=0;j<=i;j++){ if(i==j 阅读全文

posted @ 2017-03-27 23:07 太甲 阅读(156) 评论(1) 推荐(0) 编辑

2017年3月20日

素数程序

摘要: ackage 素数; public class 素数 { public static void main(String arg[]){ int i=1,j=2; do{ j=2; while((i%j!=0)&&i>j){ j++; } if(i==j) System.out.println(i); 阅读全文

posted @ 2017-03-20 23:57 太甲 阅读(129) 评论(1) 推荐(0) 编辑

九九乘法表

摘要: package 九九乘法表; public class 九九乘法表 { public static void main(String args[]) { int i,j; for(i=1;i<=9;i++){ for(j=1;j<=i;j++){ System.out.print(j+"*"+i+" 阅读全文

posted @ 2017-03-20 23:37 太甲 阅读(88) 评论(1) 推荐(0) 编辑

导航