最新回答 / qq_慕粉2565234
if (score[i] > avg) { index = i; Console.Write(name[index] + " ");}还有你的代码比较繁琐,像else continue;这样的语句是不用的。我也是新手,可以相互讨论。
2019-04-22
最赞回答 / 慕粉1106092751
有两个问题:(1)bool has7=false;和cinsole.Writeline("没有7的整倍数");的分号为中文输入,要改成英文状态;(2)console.Writeline("有7的整倍数");和 cinsole.Writeline("没有7的整倍数");中存在拼写错误,正确的是Console.WriteLine;C#中区分大小写。
2019-04-19
最新回答 / weixin_慕沐345519
Console.WriteLine中如果加了双引号(“”)会原样输出双引号中的字符,不会进行计算,如果要计算或输出表达式,()中不能加双引号。
2019-04-11
最新回答 / weixin_慕盖茨3053807
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { int a=8; int b=6; string test=a>b ? "a":"b"; Console.Wri...
2019-03-13