基本信息
源码名称:保险金额计算示例代码(含测试).docx
源码大小:0.04M
文件格式:.docx
开发语言:Java
更新时间:2020-12-28
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 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();

      }

   }

}