-4
,所以我就用分數轉換爲A級代碼學習,我有點困惑與以下步驟:關於。長度屬性INT
public static String score2grade(int score){
int [] bottoms = {95, 90, 85, 80};
String [] grade = {A+, A, A-, B+};
for(int i = 1; i < bottoms.length; i++){
if (score >= bottoms[i]) return grade[i];
我真的不明白int i = 1; i < bottoms.length; i++
部分,所以基本上我在這裏是什麼?什麼是bottoms
的長度屬性?
https://docs.oracle.com/javase/tutorial/java/nutsandbolts/arrays.html,https://docs.oracle.com/javase/tutorial/java/nutsandbolts/for.html –
'i'在那個循環中從1開始並遞增,直到達到'bottoms.length'之下的值,在這種情況下爲4(注意這意味着它不會訪問'bottomoms [0]') – simnys
任何介紹性的Java教程都將涵蓋'for'循環的概念。你可能想從那裏開始。 – David