如何找到返回int
的五种方法的总和?
例
int mark = (method1() + method2() + method3() + method4() + method5()+);
我尝试将方法分配给变量,但它不起作用。
答案 0 :(得分:0)
在代码末尾留下+
符号:int mark = (method1() + method2() + method3() + method4() + method5()+);
将此更改为:
int mark = (method1() + method2() + method3() + method4() + method5());
现在它应该可以正常工作。
答案 1 :(得分:0)
删除+符号,将给出编译时错误。
试试这个,
public static void main(String[] args) {
int mark = (method1() + method2() + method3() + method4() + method5());
System.out.println("mark=" + mark);
}
public static int method1() {
return 1;
}
public static int method2() {
return 2;
}
public static int method3() {
return 3;
}
public static int method4() {
return 4;
}
public static int method5() {
return 5;
}