因此,在我的第五行代碼[if(length == 2 || 1)]
中,我收到一條錯誤消息,未定義爲參數類型boolean,int。關於我的語法有什麼問題以及我如何解決它的任何想法?謝謝!在帶有字符串長度方法的「if」語句中使用「或」語句
//Write a program that translates a letter grade into a number grade. Letter grades are
//A B C D F, possibly followed by + or -. Their numeric values are 4, 3, 2, 1, and 0.
//There is no F+ or F-. A + increases the numeric value by 0.3, a - decreases it by 0.3.
//However, an A+ has the value 4.0. All other inputs have value –1.
//Enter a letter grade:
//使用類使用方法getNumericGrade評分。
public class Grade {
private double grade = 0.0;
public double getNumericGrade(String letterGrade){
int length = letterGrade.length();
if(length == 2 || 1){
char startChar = letterGrade.charAt(0);
char endChar = letterGrade.charAt(1);
switch(startChar){
case 'A':
this.grade = 4.0;
break;
case 'B':
this.grade = 3.0;
break;
case 'C':
this.grade = 2.0;
break;
case 'D':
this.grade = 1.0;
break;
case 'F':
this.grade = 0.0;
break;
default:
this.grade = -1;
}
if(length == 2){
switch(endChar){
case '-':
this.grade = this.grade - .3;
break;
case '+':
if(startChar != 'A'){
this.grade = this.grade + .3;
}
break;
default:
this.grade = -1;
}
}
if(startChar == 'F' && length != 1){
this.grade = -1;
}
}else{
this.grade = -1;
}
return this.grade;
}
}
應該是'長度== 2 ||長度== 1'。無法在條件中爲1進行2。 – squiguy 2013-03-18 00:55:57