我觉得这一题。 有些搞笑。。。任务提示。 是在第14行。 加入合适的逻辑运算符。。或是14行。确是console.writeLine()..在这里加,明显是不可能的。。一定会出错。。 所以,我知道 答案是:||。但是 是写在第13行的 age<6 || age >60...如果你真写在13行里了。那么结果也是错的。 为什么? 因为提示是要你明明写在第14行。。那怎么样才可以写到第14行呢? 那就是在 IF 前面。 空格。 哈哈。 那么 IF这一条命令 就换到14行了。 然后在 中间加入||。。 就成功了。
2016-04-28
最新回答 / moocer9527
啊,你这问题好多呀,1,数组命名,[]紧贴数据类型(string []name···),2,标点部分圆角和半角,写代码都是英文的标题,中文标点只有在输出字符串里会出现(string []name···)。3. int []fennshu=new int[8]{90,65,83,70,46,81,100,68};中"fennshu"!!!写程序切记要仔细。
2016-04-26
Console.WriteLine("分数最高的是{0},分数是{1}", name[i], score[j]) break; } }}
2016-04-26
static void Main(string[] args)
{ string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int[] score = new int[] { 89, 90, 98, 56, 60, 91, 93, 85 };
for (int j = 0; j < score.Length;j++ ) {
if (score[j] == (score.Max()))
{ int i = j;
Console.WriteLine("分数最高的是{0},
{ string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int[] score = new int[] { 89, 90, 98, 56, 60, 91, 93, 85 };
for (int j = 0; j < score.Length;j++ ) {
if (score[j] == (score.Max()))
{ int i = j;
Console.WriteLine("分数最高的是{0},
2016-04-26
最新回答 / 慕粉3243203
输出格式的问题,Console.WriteLine()输出数据之后会有一个换行符题目要求是连在一起的,所以应该用Console.Write()进行输出
2016-04-25