最贊回答 / qq_宿命卡恩_0
string[] name = { "吳松", "錢東宇", "伏晨", "陳陸", "周蕊", "林日鵬", "何昆", "關(guān)欣" };int[] score = { 89, 90, 98, 56, 60, 91, 93, 85 };int maxScore = score[0];string maxName = name[0];for(int i=1;i<8;i++){????if(maxScore<score[i])????{?????????maxScore = score[i];??...
2015-10-01