摘要:
package School.Day13; public class ColaEmployee { String name; int month; double money; public double getSalary(int month){ if (month == this.month) { 阅读全文
摘要:
1. package School.Day11; public class Point { int x; int y; public Point(){ } public Point(int x,int y){ this.x = x; this.y = y; } public void movePoi 阅读全文
摘要:
1.编写一个方法,实现冒泡排序(由小到大),并调用该方法 package School.Day10; public class Test01 { public static void main(String[] args) { int[] x = {9,1,2,7,6,3,4,10,8,5}; ma 阅读全文
摘要:
1.编写一个简单程序,要求数组长度为5,分别赋值10,20,30,40,50,在控制台输出该数组的值 package School.Day9; public class Test01 { public static void main(String[] args) { int[] a = {10, 阅读全文
摘要:
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 package School.Day8; public class Test01 { public static void main(String[] args){ int[] x = {10,2 阅读全文