嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
保险代码:
import java.util.Scanner;
public class A {
int age;
int driveage;
double money;
public void Age() throws Exception{
System.out.println("请输入年龄:");
age=new Scanner(System.in).nextInt();
if(age<16){
throw new Exception();
}
}
public double Money(int driveage) throws Exception{
driveage=age-16;
if(driveage<4){
money=1000;
}else if(driveage>4){
money=600;
}
return money;
}
}
测试代码:
public class ATest {
public static void main(String[] args) {
A xl=new A();
try{
xl.Age();
System.out.println("保险金额:" xl.Money(xl.age));
}catch(Exception e){
e.printStackTrace();
}
}
}