最新回答 / weixin_慕娘0258307
using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{ class Program { static void Main(string[] args) { string[,]s={{"吴松","89"},{"钱东宇","90"},{"伏晨","98"},{"陈陆","56"},{"周蕊","60"},{"林日鹏","91"},{...
2022-09-08
最新回答 / 慕工程9249744
using System;using System.Collections.Generic;using System.Text;namespace Test{ class Program { static void Main(string[] args) { double salary = 6000.00;//基本工资 double prize = 3200.00;//奖金 double tax = ...
2022-08-27
最新回答 / 崔勇
①标识符只能由英文字母、数字和下划线组成,不能包含空格和其他字符。②变量名不能用数字开头。③不能用关键字当变量名。看第一条,"#"号,不能出现在变量名中哦搜索复制
2022-07-15
最新回答 / 慕数据3346302
if(num[i]>max) max=num[i]; name=xingming[i];if下面两条语句要用{}括起来,确保两条语句都是受if条件限制,否则只有if下面第一句是受if条件限制的,第二句话会一直执行到for循环最后一次
2022-07-13
最新回答 / qq_慕哥7147956
int i, max=0, x=0; string[] names = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" }; int[] values = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 }; for (i = 0; i < values.Length; i++) { ...
2022-06-29