问题:
- 对象数组题目:
定义类Student,包含三个属性:学号number(int),年级state(int),成绩score(int)。
创建20个学生对象,学号为1到20,年级和成绩都由随机数确定。
问题一:打印出3年级(state值为3)的学生信息。
问题二:使用冒泡排序按学生成绩排序,并遍历所有学生信息
提示:
1) 生成随机数:Math.random(),返回值类型double;
2) 四舍五入取整:Math.round(double d),返回值类型long。
代码部分:
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| public class Student { public static void main(String[] args) { Student1[] arr=new Student1[20]; for(int i=0;i<arr.length;i++){ arr[i]=new Student1(); arr[i].number =i+1; arr[i].state=(int)(Math.random()*(6-1+1)+1); arr[i].score=(int)(Math.random()*(100-0+1)+0); } Student test=new Student(); test.print(arr); System.out.println("********************************"); test.search(arr, 3); System.out.println("********************************"); test.sort(arr); test.print(arr); }
public void print(Student1[] arr){ for(int i=0;i<arr.length;i++) { System.out.println(arr[i].info()); } }
public void search(Student1[] arr,int t) { for(int i=0;i<arr.length;i++) { if(arr[i].state==t) { System.out.println(arr[i].info()); } } } public void sort(Student1[] arr) { for(int i=0;i<arr.length-1;i++) { for(int j=0;j<arr.length-i-1;j++) { if(arr[j].score<arr[j+1].score) { Student1 temp; temp = arr[j]; arr[j] = arr[j+1]; arr[j+1] = temp; } } } } }
class Student1{ int number; int state; int score; public String info(){ return "学号"+number+"年级"+state+"成绩"+score; } }
|
总结:
- 四舍五入取整:Math.round(double d),返回值类型long。
- 数组的类型可以声明为类。
- 声明以某个类为类型的数组—>为数组中的每个元素声明对象。