2019年6月30日
摘要: 1、制作数字化倒计时牌,计时单位可以用秒、分货天。例如奥运会倒计时100天 package TestCountDown; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListene 阅读全文
posted @ 2019-06-30 19:23 我是wyw 阅读(315) 评论(0) 推荐(0) 编辑
  2019年6月23日
摘要: 实验代码 package shiyan; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.border.TitledBorder; public class ShiYan12 e 阅读全文
posted @ 2019-06-23 21:22 我是wyw 阅读(147) 评论(0) 推荐(0) 编辑
  2019年6月17日
摘要: 一.实验代码 package ziwojieshao; import java.awt.FlowLayout; import javax.swing.*; import java.awt.Container; import java.awt.event.ActionEvent; import jav 阅读全文
posted @ 2019-06-17 09:10 我是wyw 阅读(186) 评论(0) 推荐(0) 编辑
  2019年6月10日
摘要: 一.程序代码 package jisuanqi2; import java.awt.*; import javax.swing.*; import java.awt.event.*; public class Jisuanqi extends Frame implements ActionListe 阅读全文
posted @ 2019-06-10 08:48 我是wyw 阅读(118) 评论(0) 推荐(0) 编辑
  2019年6月2日
摘要: 设计一个计算器界面窗口 一.程序代码 import java.awt.*; import java.awt.event.*; public class Jisuanqi extends WindowAdapter { Panel p1 = new Panel(); Panel p2 = new Pa 阅读全文
posted @ 2019-06-02 19:32 我是wyw 阅读(485) 评论(0) 推荐(0) 编辑
  2019年5月27日
摘要: 一.程序代码 package error; public class Throwerror { public static void main(String[] args) throws IllegalArgumentException { Point point1=new Point (3,1); 阅读全文
posted @ 2019-05-27 09:08 我是wyw 阅读(466) 评论(0) 推荐(0) 编辑
  2019年5月19日
摘要: 声明圆锥体类,实现Area和Volume接口,计算表面积和体积,按体积比较大小 一.程序代码 public class yuanzhui extends Rectangle implements Area,Volume { private double radius; private double 阅读全文
posted @ 2019-05-19 12:10 我是wyw 阅读(394) 评论(0) 推荐(0) 编辑
  2019年5月6日
摘要: 一.程序代码 package Students; public class Person { public String name; public String birthday; public String province,city; public int count; public Perso 阅读全文
posted @ 2019-05-06 21:52 我是wyw 阅读(244) 评论(0) 推荐(0) 编辑
  2019年4月14日
摘要: 一.源代码 import java.util.Scanner; public class Account { public int id; public int password; public String name; public int money; public Account(int id 阅读全文
posted @ 2019-04-14 19:42 我是wyw 阅读(134) 评论(0) 推荐(0) 编辑
  2019年4月7日
摘要: 一.源程序 public class Paixu { public static void main(String[] args) { Scanner s = new Scanner(System.in); int temp; int[] a = new int[10]; for (int i = 阅读全文
posted @ 2019-04-07 16:15 我是wyw 阅读(179) 评论(1) 推荐(0) 编辑