using System;
public class Program{
public static void Main(){
// [] means "array". 你可以想像Array為一個櫃,呢個櫃可以有超過一個櫃桶,可以放多過一件東西.
// 呢度我地定義 "roundScores" 係一個專放整數嘅櫃.
int[] roundScores;
// 我地要決定個櫃有幾多個櫃桶.
// "new int[6]" 意思就係 "幫我創造一個新嘅整數櫃,要有6個櫃桶嘅"
roundScores= new int[6];
// 放 30 入第一個櫃桶. 第一個櫃桶嘅index 一定係 0
roundScores[0]= 30;
roundScores[1]= -10;
roundScores[2]= 20;
roundScores[3]= 35;
roundScores[4]= -30;
// 因為第一個櫃桶嘅index係0, 所以最後一個櫃桶嘅 index 係5
roundScores[5]= 20;
// final score會係所有rounds嘅score加埋一齊,所以你要改line 24~
int finalScore= 0;
Console.WriteLine("Final score is: "+ finalScore);
}