摘要: package cn.wzx.www; //1 1 2 3 5 8 13 public class Fibonacci { public static void main(String[] args) { // TODO 自动生成的方法存根 int i; int[] arr = new int[30]; arr[0] =... 阅读全文
posted @ 2017-12-18 13:48 二宫和我 阅读(96) 评论(0) 推荐(0) 编辑
摘要: package cn.wzx.www; public abstract class Person { private String name; private int age; public Person(String name,int age){ this.name=name; this.age=age; } ... 阅读全文
posted @ 2017-12-18 13:47 二宫和我 阅读(81) 评论(0) 推荐(0) 编辑
摘要: package cn.lyhh; class Person{ private String name; private int age; static String city = "A城"; public Person(String name,int age) { this.name = name; this.age = age;... 阅读全文
posted @ 2017-11-27 13:48 二宫和我 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 2 3 4 阅读全文
posted @ 2017-11-13 11:15 二宫和我 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 2 3 阅读全文
posted @ 2017-11-13 11:09 二宫和我 阅读(116) 评论(0) 推荐(0) 编辑
摘要: package cn.ch.w; public class Person {private String name;private static int count;public Person(){count++;System.out.println("产生了"+count+"xxxx。");}pu 阅读全文
posted @ 2017-11-13 11:01 二宫和我 阅读(153) 评论(0) 推荐(0) 编辑
摘要: package cn.person.www; public class person { public int id; public String name; public int age; public String city; public String introduce() { return 阅读全文
posted @ 2017-11-06 12:37 二宫和我 阅读(144) 评论(0) 推荐(0) 编辑
摘要: package MZz;import com.rupeng.game.GameCore;public class MZ implements Runnable { public static void main(String[] args) { GameCore.start(new MZ()); S 阅读全文
posted @ 2017-10-22 21:11 二宫和我 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 1.判断计算是否正确 import java.util.Scanner; public class FM { public static void main(String[] args) { int number1=(int)(System.currentTimeMillis()%10); int 阅读全文
posted @ 2017-10-15 13:42 二宫和我 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.输出的结果是什么? import java.util.Scanner;public class Prs { public static void main(String[] args) { System.out.println("5+5="+5+5); } } 2.算出输出的结果(自增自减) p 阅读全文
posted @ 2017-10-15 13:33 二宫和我 阅读(150) 评论(0) 推荐(0) 编辑