摘要: 1 package qjw; 2 3 public class feiponaqi { 4 public static void main(String[] args) { 5 int[] arr = new int [30]; 6 arr[0] = 1; 7 arr[1] = 1; 8 for(int i =... 阅读全文
posted @ 2017-12-18 15:26 华山论 阅读(109) 评论(0) 推荐(0) 编辑
摘要: package qjw; public abstract class Person { private String name; private int age; public String getName() { return name; } public void setName(String 阅读全文
posted @ 2017-11-27 14:13 华山论 阅读(208) 评论(0) 推荐(0) 编辑
摘要: package qjw; public abstract class A { private String name; public A(String name) { this.name=name; } public String getName() { return this.name; } public ab... 阅读全文
posted @ 2017-11-27 14:06 华山论 阅读(171) 评论(0) 推荐(0) 编辑
摘要: public class Shiyi { public static void main(String[] args) { // TODO Auto-generated method stub new Shiyi().fun(); } public void fun() { System.out.println("H... 阅读全文
posted @ 2017-11-20 13:42 华山论 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 1 package com.dengbaobao; 2 public class Barry$June_person { 3 public static void main(String args[]) { 4 new Person(); 5 new Person(); 6 new Person(); 7 new... 阅读全文
posted @ 2017-11-13 13:57 华山论 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 package com.duixiangninth; 2 3 import java.security.Permission; 4 5 public class DemoPerson { 6 7 public int id; 8 public String name; 9 public int 阅读全文
posted @ 2017-11-13 13:53 华山论 阅读(123) 评论(0) 推荐(0) 编辑
摘要: package com.baidu;import java.util.Scanner;public class SentinelValue { public static void main(String[] args) { Scanner input = new Scanner(System.in 阅读全文
posted @ 2017-11-13 13:49 华山论 阅读(266) 评论(0) 推荐(0) 编辑
摘要: package game; import java.awt.Color; import com.rupeng.game.GameCore; public class Game implements Runnable { public static void main(String[] args) { 阅读全文
posted @ 2017-10-23 13:42 华山论 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 3-7import java.util.Scanner;public class L { @SuppressWarnings("resource") public static void main(String[] args) { Scanner input = new Scanner(System 阅读全文
posted @ 2017-10-16 13:58 华山论 阅读(179) 评论(0) 推荐(0) 编辑
摘要: //程序员:乔建伟 2017.10.8import java.util.Scanner;public class L { public static void main(String[] args) { System.out.println("5+5="+5+5); int a=3,b; b=a++ 阅读全文
posted @ 2017-10-09 10:12 华山论 阅读(109) 评论(0) 推荐(0) 编辑