回答編集履歴

1

スペース

2023/12/20 22:09

投稿

TN8001
TN8001

スコア9365

test CHANGED
@@ -10,11 +10,11 @@
10
10
  ```cs
11
11
  List<Student> students = new List<Student>
12
12
  {
13
- new Student { First = "Svetlana", Last = "Omelchenko", ID = 111, Scores = new List<int>{ 97, 72, 81, 60 } },
13
+ new Student { First = "Svetlana", Last = "Omelchenko", ID = 111, Scores = new List<int> { 97, 72, 81, 60 } },
14
- new Student { First = "Claire", Last = "O'Donnell", ID = 112, Scores = new List<int>{ 75, 84, 91, 39 } },
14
+ new Student { First = "Claire", Last = "O'Donnell", ID = 112, Scores = new List<int> { 75, 84, 91, 39 } },
15
- new Student { First = "Sven", Last = "Mortensen", ID = 113, Scores = new List<int>{ 99, 89, 91, 95 } },
15
+ new Student { First = "Sven", Last = "Mortensen", ID = 113, Scores = new List<int> { 99, 89, 91, 95 } },
16
- new Student { First = "Cesar", Last = "Garcia", ID = 114, Scores = new List<int>{ 72, 81, 65, 84 } },
16
+ new Student { First = "Cesar", Last = "Garcia", ID = 114, Scores = new List<int> { 72, 81, 65, 84 } },
17
- new Student { First = "Debra", Last = "Garcia", ID = 115, Scores = new List<int>{ 97, 89, 85, 82 } }
17
+ new Student { First = "Debra", Last = "Garcia", ID = 115, Scores = new List<int> { 97, 89, 85, 82 } }
18
18
  };
19
19
 
20
20
  //List<Student> students =