最赞回答 / qq_扬名工作室_bfAGKR
好像是控制台应用选错了 2017版的有两个控制台一个是控制台应用(.NET Core)一个是控制台应用(.NET Framework)我的错误是用的控制台应用(.NET Framework)
2018-09-24
最新回答 / ILIKE学习
int[] fs = new int[4]; string[] name = new string[4]; int max = fs[0]; string maxname = null; int sum = 0; for (int i = 0; i < name.Length; i++) { Console.Writ...
2018-09-19
最新回答 / masterintel
using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{ class Program { static void Main(string[] args) { //语数外三科 可以用二维数组来写 //{{语文成绩,数学成绩,英语成绩}} int[,] score = new int[5,...
2018-09-17
最新回答 / Lagerstroemia0106
Console.Write("我的工资是{0}, 我的税后工资是{1}" ,salary + prize, salary+prize-tax);
2018-09-17
最新回答 / 慕粉小萌新
max 不是关键字,用到max 是因为要查找最高分啊代码供参考namespace projGetMaxScore{ class Program { static void Main(string[] args) { string[]names={"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"}; int[]score={89,90,98,56,60,91,93,88}; int max=0...
2018-09-12
最新回答 / Angela单单
string[] name = new string[8] { "景珍",
"林惠洋", "成蓉", "洪南昌", "龙玉民", "单江开", "田武山", "王三明" }; int[] score = new int[8] {
90,65,88,70,46,81,100,68 }; int sum = 0, avg; int e = 0; for (int i = 0; i <
score.Length; i...
2018-09-11
最赞回答 / qq_劲舞寳貝tp_0
实际工作谁会用if()... elseif()... else啊,学校里做做算术题还差不多多半都是枚举配switch, 思想僵化说明见少了,等见多了用多了,自然就好了
2018-08-30