最新回答 / qq_慕先生330273
? ? ? ? ? ? string[,]? sor=new string[,]? ? ? ? ? ? {{"吳松","89"},{"錢東宇","90"},{"伏晨","98"},{"陳陸","56"},{"周蕊","60"},{"林日鵬","91"},{"何昆","93"},{"關欣","85"}? ? ? ? ? ? };? ? ? ? ? ? //Console.WriteLine(sor.GetLength(0));? ? ? ? ? ? int Q = 0;? ? ? ? ? ? for (in...
2020-07-30
最新回答 / qq_慕先生330273
? ? ? ? ? ? string[,]? sor=new string[,]? ? ? ? ? ? {{"吳松","89"},{"錢東宇","90"},{"伏晨","98"},{"陳陸","56"},{"周蕊","60"},{"林日鵬","91"},{"何昆","93"},{"關欣","85"}? ? ? ? ? ? };? ? ? ? ? ? //Console.WriteLine(sor.GetLength(0));? ? ? ? ? ? int Max = 0;? ? ? ? ? ? strin...
2020-07-24
最贊回答 / 幕布斯9103858
static void Main(string[] args)? ? ? ? {? ? ? ? ? ? //聲明整型數組,保存一組整數? ? ? ? ? ? int[] num = new int[] { 3,34,43,2,11,19,30,55,20};? ? ? ? ? ? bool has7=false;//請完善代碼,判斷數組中有沒有7的整倍數? ? ? ? ? ? for(int i=0; i<num.Length;i++)? ? ? ? ? ? {? ? ? ? ? ? ? ? if(...
2020-07-24
最新回答 / qq_慕斯卡1442426
?int sore[]=new int={90,65,88,70,46,81,100,68};? 這一行后面的"="號不需要?int smu=0;? 這個定義了沒用上可以刪除
2020-07-20
最新回答 / qq_慕先生330273
? ? ? ? ? ? string[,]? sor=new string[,]? ? ? ? ? ? {{"吳松","89"},{"錢東宇","90"},{"伏晨","98"},{"陳陸","56"},{"周蕊","60"},{"林日鵬","91"},{"何昆","93"},{"關欣","85"}? ? ? ? ? ? };? ? ? ? ? ? //Console.WriteLine(sor.GetLength(0));? ? ? ? ? ? int Max = 0;? ? ? ? ? ? strin...
2020-07-20
最新回答 / 所羅門87
Console.Write("有");? 和? ?Console.Write("沒有7的整倍數");? ?這兩個后面的分號應該是英文狀態的分號,你寫的中文的,VS直接就報錯了,
2020-06-29
最新回答 / 慕碼人8241525
if(salary>=price)//請在這里補充條件判斷? ? ? ? Console.Write("這月工資夠買手機!");else Console.Write("這月工資不夠買手機!");
2020-06-29
最新回答 / 慕桂英7051594
這里的輸出錯誤是因為運行結果和給出的答案形式不一樣,答案中名字單獨為一行,你運行出來的結果沒有。你可以改成”高于平均分的有:\n“,加一個換行符號就好了。
2020-05-28