我正在尝试计算平均gpa,但出现错误。
public static double calculateAVG(int grade, int credit) {
double AVG;
if (education == grade) {
AVG= (grades * credits) / credits;
}
else {
System.out.println("Default");
}
return input.nextDouble();
}
答案 0 :(得分:2)
您无法在函数调用中声明类型。更改:
BFP = calculateBFP(int gender, int age, double BMI);
收件人
BFP = calculateBFP(gender, age, BMI);
另外,您可能返回的不是input.nextDouble()
而是BFP
变量。
答案 1 :(得分:0)
您的整个代码应位于public class
中。
您还需要import java.util.Scanner
才能使用来自
用户。
return BFP