摘要:
1.实验代码 package SYL; import java.util.Scanner; public class Point { static int x; static int y; Point(int x,int y){ Point.x=x; Point.y=y; } @SuppressWa 阅读全文
摘要:
1.程序 package DYL; interface Area { public abstract double area(); } interface Volume { public abstract double volume(); } public class yuanzhui extend 阅读全文
摘要:
1实验代码: package Students; public class Person { public String name; public String birthday; public String province,city; public int count; public Perso 阅读全文
摘要:
1.、程序代码 package 类的封装; import java.util.Scanner; public class 银行账户类 { public int id; public int password; public int money; public String name;public 银 阅读全文
摘要:
1.实验程序如下: public class shuzu { public static void main(String[] args) { int a[]= {11,22,5,9,8,79,42,51,13,69}; //从小到大进行排序 for(int j=0;j<10;j++) for(in 阅读全文