最贊回答 / weixin_慕數據4058855
已解決using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{??? class Program??? {??????? static void Main(string[] args)??????? {?????????? string[,] name_score={{"吳松","89"},{"錢東宇","90"},{"伏晨","98"},{"陳陸","56"},{"周蕊","60"...
2020-04-16
最新回答 / qq_慕俠5280997
using System;using System.Collections.Generic;using System.Text;namespace projAboveAvg{??? class Program??? {??????? static void Main(string[] args)??????? {??????????? string[,] name = new string[,] { { "景珍", "90" }, { "林慧洋", "65" }, { "成蓉", "88" }, { "洪...
2020-04-09
最新回答 / weixin_慕虎1420592
?x++; 在if的執行語句里,當x的值為偶數時,if語句不執行,x的值一直不加1,while (x <= 30)一直執行,程序進入死循環。
2020-03-27