2017年12月18日

摘要: 1 package Hzy; 2 3 public class xuanze { 4 public static void main(String[] args) { 5 int[] arr={1,3,2,45,65,33,12}; 6 System.out.println("交换之前:"); 7 for(in... 阅读全文
posted @ 2017-12-18 15:07 陪着鹿晗去明天 阅读(128) 评论(0) 推荐(0) 编辑
 
摘要: package MZz;import com.rupeng.game.GameCore;public class MZ implements Runnable {public static void main(String[] args){GameCore.start(new MZ());Syste 阅读全文
posted @ 2017-12-18 14:52 陪着鹿晗去明天 阅读(127) 评论(0) 推荐(0) 编辑
 
摘要: package top.hyself; //冒泡排序法 public class Demo { public static void main(String[] args) { int[] arr = {1,5,6,7,9,8,3,0,2,4}; for(int i = 0;i < arr.leng 阅读全文
posted @ 2017-12-18 14:08 陪着鹿晗去明天 阅读(113) 评论(0) 推荐(0) 编辑
 
摘要: package homework; import com.rupeng.game.GameCore; public class Test implements Runnable { public static void main(String[] args) { GameCore.start(new 阅读全文
posted @ 2017-12-18 14:03 陪着鹿晗去明天 阅读(155) 评论(0) 推荐(0) 编辑
 
摘要: public abstract class Person { private String name; private int age; public String getName() { return name; } public void setName(String name) { this.name = name;... 阅读全文
posted @ 2017-12-18 14:02 陪着鹿晗去明天 阅读(125) 评论(0) 推荐(0) 编辑

2017年11月27日

摘要: 1 package cn.lyh; 2 3 public class L { 4 5 public static void main(String[] args) { 6 int []arr = new int[30]; 7 arr[0]=1; 8 arr[1]=1; 9 for(int i=2;iarr... 阅读全文
posted @ 2017-11-27 12:36 陪着鹿晗去明天 阅读(181) 评论(0) 推荐(0) 编辑

2017年11月20日

摘要: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 1 public  阅读全文
posted @ 2017-11-20 12:35 陪着鹿晗去明天 阅读(113) 评论(0) 推荐(0) 编辑

2017年11月13日

摘要: package nn; public class RL{ private String name; private int age; public RL(String name,int age){ this.name =name; this.age =age; } public boolean compare(RL r) { ... 阅读全文
posted @ 2017-11-13 13:27 陪着鹿晗去明天 阅读(217) 评论(0) 推荐(0) 编辑

2017年11月6日

摘要: 1 2 3 4 5 package cn.ch.w; public abstract class A { public abstract void fun(); } 1 2 3 4 5 package cn.ch.w; public abstract class A { public abstrac 阅读全文
posted @ 2017-11-06 15:17 陪着鹿晗去明天 阅读(168) 评论(0) 推荐(0) 编辑
 
摘要: package tyu; public class Person { public int id; public String name; public int age; public String city; public String introduce() { String songs = null; return "... 阅读全文
posted @ 2017-11-06 13:54 陪着鹿晗去明天 阅读(164) 评论(0) 推荐(0) 编辑