解题思路:
先定义一个学生类Student,并且设置学号,姓名,三科的成绩,并给出输入的这些数据的方法,然后先根据输入的Student类的数据来将平均数挨个输出,之后比对三科成绩最高分的学生,然后将之输出。具体参考下面的代码。
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
Strudent [] st = new Strudent[n];
int [] arr1 = new int[n];
int [] arr2 = new int[n];
int [] arr3 = new int[n];
for(int i=0;i<n;i++){
st[i] = new Strudent(sc.next(),sc.next(),sc.nextInt(),sc.nextInt(),sc.nextInt());
arr1[i] = st[i].a;
arr2[i] = st[i].b;
arr3[i] = st[i].c;
}
int sum1=0,sum2=0,sum3=0;
for(int i=0;i<n;i++){
sum1+=arr1[i];
sum2+=arr2[i];
sum3+=arr3[i];
}
System.out.print(sum1/n);
System.out.print(' ');
System.out.print(sum2/n);
System.out.print(' ');
System.out.print(sum3/n);
System.out.println();
int a = st[0].a+st[0].b+st[0].c;
int m=0;
for(int i=0;i<st.length;i++){
if(a<(st[i].a+st[i].b+st[i].c)){
a=(st[i].a+st[i].b+st[i].c);
}
}
for(int i=0;i<st.length;i++){
if(a==(st[i].a+st[i].b+st[i].c)){
m=i;
}
}
System.out.println(st[m].id+' '+st[m].name+' '+st[m].a+' '+st[m].b+' '+st[m].c);
}
}
class Strudent {
String id;
String name;
int a,b,c;
public Strudent(){};
public Strudent(String Id, String Name, int A, int B, int C){
this.id = Id;
this.name = Name;
this.a = A;
this.b = B;
this.c = C;
}
}
0.0分
1 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复