摘要:
package pra; public class ColaEmployee { String name; int month; public ColaEmployee() { } public ColaEmployee(String name, int month) { super(); this 阅读全文
摘要:
import java.util.*; public class a1 { public static void main(String[] args){ int a[] = new int[10]; int sum = 0, max = 0, min = 1000; System.out.prin 阅读全文
摘要:
1.定义长度位5的整型数组,输入他们的值用冒泡排序后输出 public class a1 { public static void main(String[] args){ int a[]={6,34,55,1,32,4}; for(int i=0;i<a.length-1;i++){ for(in 阅读全文
摘要:
1.编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 public class a1 { public static void main(String[] args){ int[] shuzu=new int[]{10,20,30,40,50}; f 阅读全文