为了账号安全,请及时绑定邮箱和手机立即绑定

为什么sum方法里面加参数是错的?

package test3;


public class HelloWorld {


// 定义静态变量score1

static int score1 = 86;

// 定义静态变量score2

static int score2 = 92;


// 定义静态方法sum,计算成绩总分,并返回总分

public static int sum(/** int score1,int score2 */

) {


int sum = score1 + score2;

return (sum);


}


public static void main(String[] args) {


// 调用静态方法sum并接收返回值

int allScore = sum();


System.out.println("总分:" + allScore);

}

}


正在回答

2 回答

你main方法里面调用的sum()方法没带参数

0 回复 有任何疑惑可以回复我~

原来后面sum方法里没有带参数,报错

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么sum方法里面加参数是错的?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信