鍵盤上 輸入cr 然后點擊兩次tab鍵,可以快速輸入console.ReadLine(); 但是需要仿照cw快捷鍵進行導入快捷代碼
2017-04-15
string[] xm = { "吳松", "錢東宇", "伏晨", "陳陸", "周蕊", "林日鵬", "何昆", "關欣" }; int[] score = { 89, 90, 98, 56, 60, 91, 93, 85 }; int MaxScore = 0;int key = 0; for(int i=0;i<score.Length;i++){if (MaxScore < score[i]){ MaxScore = score[i];key = i;}}Console.Write("分數最高的是"+xm[key]+",分數是"+MaxScore);
int year = 2015;//年份
var text="平年";
//請填寫代碼
if(year%4==0)
{
text="閏年";
}
Console.WriteLine("今年是{0}",text);
var text="平年";
//請填寫代碼
if(year%4==0)
{
text="閏年";
}
Console.WriteLine("今年是{0}",text);
2017-04-10