摘要: package Wxte; import java.util.Scanner; import java.util.ArrayList; public class DAKE { public static void main(String[] args) { // TODO Auto-generate 阅读全文
posted @ 2020-06-03 10:57 Demens 阅读(152) 评论(0) 推荐(0) 编辑
摘要: package Wxte; import java.util.Random; public class Demmom { public static void main(String[] args) { // TODO Auto-generated method stub Random rand = 阅读全文
posted @ 2020-05-29 11:02 Demens 阅读(112) 评论(0) 推荐(0) 编辑
摘要: package Wxte; public class Best { public static void main(String[] args) { // TODO Auto-generated method stub String str = "Hello World"; char[] c = s 阅读全文
posted @ 2020-05-27 08:08 Demens 阅读(93) 评论(0) 推荐(0) 编辑
摘要: package Wxte; public abstract class Car { String name; int month; public Car() { } public Car(String name, int month) { super(); this.name = name; thi 阅读全文
posted @ 2020-05-19 14:36 Demens 阅读(149) 评论(0) 推荐(0) 编辑
摘要: package Wxte; public class Car { private String brand; private String color; private double speed = 0; public Car() { } public Car(String brand, Strin 阅读全文
posted @ 2020-05-14 14:13 Demens 阅读(119) 评论(0) 推荐(0) 编辑
摘要: package Wxte; import java.util.Scanner; public class Person { String name; int mark; public Person() { } public Person(String str, int mark) { this.na 阅读全文
posted @ 2020-05-07 12:30 Demens 阅读(156) 评论(0) 推荐(0) 编辑
摘要: package Wxte; import java.util.Scanner; public class Person { int x; int y; Person() { } Person(int dx,int dy) { x+=dx; y+=dy; } void movepoint(int p1 阅读全文
posted @ 2020-05-03 10:41 Demens 阅读(86) 评论(0) 推荐(0) 编辑
摘要: package Wxte; import java.util.Random; import java.util.Scanner; public class Mast { public static void main(String[] args) { // TODO Auto-generated m 阅读全文
posted @ 2020-04-27 13:47 Demens 阅读(109) 评论(0) 推荐(0) 编辑
摘要: package Wxte; public class Rectangle { char color; int cpu; public void show(){ System.out.println("笔记本颜色是 " + color); System.out.println("笔记本cpu型号 " 阅读全文
posted @ 2020-04-23 13:36 Demens 阅读(107) 评论(0) 推荐(0) 编辑
摘要: package Wxte; public class Rectangle { double length; double width; public void getArea() { System.out.println("面积="+length*width); } public void getP 阅读全文
posted @ 2020-04-21 14:07 Demens 阅读(90) 评论(0) 推荐(0) 编辑