2017年11月13日

摘要: 电视机 阅读全文
posted @ 2017-11-13 13:56 老张的小迷妹儿 阅读(144) 评论(0) 推荐(0) 编辑
摘要: package cn.wzx.www; public class Hellow { public static void main(String[] args) { new Hellow().fun(); } public void fun() { System.out.println("Hello World!"); } }... 阅读全文
posted @ 2017-11-13 13:56 老张的小迷妹儿 阅读(124) 评论(0) 推荐(0) 编辑

2017年11月6日

摘要: package cn.wax.www; class Person { private String name; private static int count; public Person() { count++; this.name="NONAME -"+count; } public Person(Strin... 阅读全文
posted @ 2017-11-06 13:45 老张的小迷妹儿 阅读(118) 评论(0) 推荐(0) 编辑

2017年10月30日

摘要: package cn.wzx.www; public class Person { private int id; private String name; private int age; private String sex; public String introduce() { return "My id=" + id ... 阅读全文
posted @ 2017-10-30 13:50 老张的小迷妹儿 阅读(155) 评论(0) 推荐(0) 编辑

2017年10月23日

摘要: package cn.wzx.www; import com.rupeng.game.GameCore; public class basicGame implements Runnable { public static void main(String[] args) { // TODO 自动生成的方法存根 GameCore.start(new ... 阅读全文
posted @ 2017-10-23 13:53 老张的小迷妹儿 阅读(221) 评论(0) 推荐(0) 编辑

2017年10月16日

摘要: package cn.wzx.www; import java.util.Scanner; public class AdditionQuiz { public static void main(String[] args) { // TODO 自动生成的方法存根 int number1=(int)(System.currentTimeMillis(... 阅读全文
posted @ 2017-10-16 13:43 老张的小迷妹儿 阅读(163) 评论(0) 推荐(0) 编辑

2017年10月9日

摘要: public class Sum { public static void main(String[] args) { System.out.println("5+5="+5+5); } } public class Increment{ public static void main(String 阅读全文
posted @ 2017-10-09 11:40 老张的小迷妹儿 阅读(115) 评论(0) 推荐(0) 编辑

2017年9月25日

摘要: //程序员:王智霞 //1、输出一个长整型的变量 public class Long{ public static void main(String[] args) { long l=123456789012345l;//java中默认类型为Int型,电脑想要识别长整型需加l(或L) System. 阅读全文
posted @ 2017-09-25 09:17 老张的小迷妹儿 阅读(129) 评论(0) 推荐(0) 编辑

2017年9月18日

摘要: import java.util.Scanner;public class NumberSum{ public static void main(String[] args) { int a,b,c,sum=0; Scanner input =new Scanner(System.in); Syst 阅读全文
posted @ 2017-09-18 12:20 老张的小迷妹儿 阅读(156) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class Distance { public static void main(String[] args) { double a; Scanner input =new Scanner(System.in); System.out 阅读全文
posted @ 2017-09-18 12:19 老张的小迷妹儿 阅读(212) 评论(0) 推荐(0) 编辑

导航