using System;using System.Collections.Generic;using System.Text;namespace projGetMaxScore{? ? class Program? ? {? ? ? ? static void Main(string[] args)? ? ? ? {? ? ? ? ? ? ?int j,max;? ? ? ? ? ? ?max = j = -1;? ? ? ? int[] score=new int[8]{89,90,98,56,60,91,93,85};? ? ? ? ? ? string[] name=new string[8]{"吳松","鐵東寧","伏晨","陳陸","周蕊","林日鵬","何昆","關(guān)欣"};//申明姓名數(shù)組? ? ? ? for (int i = 0; i < 8;i++ )? ? ? ? {? ? ? ? ? ? if (max < score[i])? ? ? ? ? ? {? ? ? ? ? ? ? ? j++;? ? ? ? ? ? ? ? max = score[i];? ? ? ? ? ? }? ? ? ? }? ? ? ? Console.Write("分?jǐn)?shù)最高的是{0},分?jǐn)?shù)是{1},",name[j],max);? ? ? ? ? ??? ? ? ? }? ? }}
1 回答
已采納

慕婉清0_郁亂我心
TA貢獻(xiàn)22條經(jīng)驗(yàn) 獲得超43個(gè)贊
"=" 是 賦值符號(hào),而不是 數(shù)學(xué)中 ?相等的意思?,
max = j = -1 ?:
????????????????????????將 -1 的值 先賦值給 j,這是 j 的 對(duì)應(yīng)的 值為 -1
?????????????????????然后再將 j 的值 賦值給 max,這是 max 的值 為 變量 j 所對(duì)應(yīng)的 值 -1????
????????????????????由于 max,j 都是 int 類型 的 變量 所以 max = j = -1? 是沒有問題的
- 1 回答
- 0 關(guān)注
- 1690 瀏覽
添加回答
舉報(bào)
0/150
提交
取消