HW7.3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HW7.3相关的知识,希望对你有一定的参考价值。

技术分享

 

 1 public class Solution
 2 {
 3     public static void main(String[] args)
 4     {
 5         char[][] answers = 
 6         {
 7             {‘A‘, ‘B‘, ‘A‘, ‘C‘, ‘C‘, ‘D‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
 8             {‘D‘, ‘B‘, ‘A‘, ‘B‘, ‘C‘, ‘A‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
 9             {‘E‘, ‘D‘, ‘D‘, ‘A‘, ‘C‘, ‘B‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
10             {‘C‘, ‘B‘, ‘A‘, ‘E‘, ‘D‘, ‘C‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
11             {‘A‘, ‘B‘, ‘D‘, ‘C‘, ‘C‘, ‘D‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
12             {‘B‘, ‘B‘, ‘E‘, ‘C‘, ‘C‘, ‘D‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
13             {‘B‘, ‘B‘, ‘A‘, ‘C‘, ‘C‘, ‘D‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}, 
14             {‘E‘, ‘B‘, ‘E‘, ‘C‘, ‘C‘, ‘D‘, ‘E‘, ‘E‘, ‘A‘, ‘D‘}
15         };
16 
17         char[] keys = {‘D‘, ‘B‘, ‘D‘, ‘C‘, ‘C‘, ‘D‘, ‘A‘, ‘E‘, ‘A‘, ‘D‘};
18         int[] students = new int[10];
19         int[] correctCount = new int[10];
20         int temp;
21 
22         for(int i = 0; i < 10; i++)
23             students[i] = i;
24         for(int i = 0; i < answers.length; i++)
25         {
26             for(int j = 0; j < answers[i].length; j++)
27                 if(answers[i][j] == keys[j])
28                     correctCount[i]++;
29         }
30 
31         for(int i = 0; i < 10; i++)
32         {
33             for(int j = i; j < 10; j++)
34             {
35                 if(correctCount[j] > correctCount[i])
36                 {
37                     temp = correctCount[j];
38                     correctCount[j] = correctCount[i];
39                     correctCount[i] = temp;
40                     temp = students[j];
41                     students[j] = students[i];
42                     students[i] = temp;
43                 }
44             }
45         }
46 
47         for(int i = 0; i < 10; i++)
48             System.out.println("Student " + students[i] + "‘s correct count is " + correctCount[i]);
49     }
50 }

 

以上是关于HW7.3的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数