解题思路:利用String类型的二位数组,进行数据的存储,将分数最大的编号做标记,最后在数组中找到该编号的数据即可
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n, a, b, c; String sno, name; int cursor = 0; int max , suma = 0, sumb = 0, sumc = 0, mid = 0; n = sc.nextInt(); String[][] str = new String[n][5]; for(int i = 0; i < n; i++){ sno = sc.next(); name = sc.next(); a = sc.nextInt(); b = sc.nextInt(); c = sc.nextInt(); str[i][0] = sno; str[i][1] = name; str[i][2] = String.valueOf(a); str[i][3] = String.valueOf(b); str[i][4] = String.valueOf(c); max = Math.max((Math.max(a,b)),c); if(max > mid){ mid = max; cursor = i; } suma += a; sumb += b; sumc += c; } System.out.println(suma/n + " " + sumb/n + " " + sumc/n); System.out.println(str[cursor][0]+ " "+str[cursor][1]+" "+str[cursor][2]+" "+str[cursor][3]+" "+ str[cursor][4]); } }
0.0分
0 人评分
不容易系列2 (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:724 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1327 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:674 |
WU-图形输出 (C++代码)浏览:836 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:565 |
简单的a+b (C语言代码)浏览:661 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:569 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:645 |
找出最长的字符串来 (C语言代码)浏览:1840 |