已采纳回答 / 慕容62762
正确的应该是: if (money >= 100000) { Console.WriteLine("送一台微波炉"); } else { if (money >= 50000) { Console.WriteLine("送一套茶具"); } ...
2018-12-04
已采纳回答 / 水漪_
//你的new数组语法错了,然后max这个变量要全局变量,输出语句也放错地方了这个是我修改你代码之后的。你可以看看。string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈路", "周蕊", "林日鹏", "何昆", "关欣" }; int[] score = new int[]{ 89, 90, 98, 56, 60, 91, 93, 85 }; int max = 0; string topname=null; ...
2018-11-29
char[,] ch = { {'我','是','软'},{'件','工','程'},{'师','啦','!'}};
Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
一位数组3*3的数据,进行筛选找到对应字符可以打印出来。
Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
一位数组3*3的数据,进行筛选找到对应字符可以打印出来。
2018-11-28