2 回答

TA貢獻(xiàn)11條經(jīng)驗(yàn) 獲得超1個(gè)贊
public class Test {
static int avg(int number1,int number2)throws Exception{
?if(number1<0||number2<0){
? throw new Exception("不可以使用負(fù)數(shù)");
?}
?if(number1>100||number2>100){
? throw new Exception("數(shù)值太大");
?}
?return (number1+number2)/2;
}
public static void main(String[] args) {
?// TODO Auto-generated method stub
?try{
? int result=avg(102,150);
? System.out.println(result);
?}catch(Exception e)
?{
?e.printStackTrace();
? System.out.println(e);
?}
}
}
試試這個(gè),應(yīng)該可以
添加回答
舉報(bào)