某銀行推出了整存整取定期儲蓄業(yè)務(wù),其存期分為一年、兩年、三年、五年,到期憑存單支取本息。存款年利率表如下:
成都創(chuàng)新互聯(lián)公司為您提適合企業(yè)的網(wǎng)站設(shè)計(jì)?讓您的網(wǎng)站在搜索引擎具有高度排名,讓您的網(wǎng)站具備超強(qiáng)的網(wǎng)絡(luò)競爭力!結(jié)合企業(yè)自身,進(jìn)行網(wǎng)站設(shè)計(jì)及把握,最后結(jié)合企業(yè)文化和具體宗旨等,才能創(chuàng)作出一份性化解決方案。從網(wǎng)站策劃到成都網(wǎng)站建設(shè)、成都網(wǎng)站制作, 我們的網(wǎng)頁設(shè)計(jì)師為您提供的解決方案。存期 年利率(%)
一年 2.05
兩年 2.25
三年 2.75
五年 3.25
請存入一定金額(1000起存),存一定年限(四選一),計(jì)算到期后得到的本息總額。
提示:
存入金額和存入年限均由鍵盤錄入
本息計(jì)算方式:本金+本金×年利率×年限
代碼實(shí)現(xiàn)import java.util.Scanner;
public class InterestCalculate {
//返回年利率
double Interest(int year){
double i=0;
switch(year) {
// 一年 2.05
case 1:
i=2.05;
break;
//兩年 2.25
case 2:
i=2.25;
break;
//三年 2.75
case 3:
i=2.75;
break;
//五年 3.25
case 5:
i=3.25;
break;
default:
break;
}
return i;
}
//本息計(jì)算
double calculate(int m,int y,double i) {
//本息計(jì)算方式:本金+本金×年利率×年限
double r=0;
r=m+m*(i/100)*y;
return r;
}
public static void main(String[] args) {
// TODO 自動生成的方法存根
InterestCalculate e=new InterestCalculate();
Scanner sc=new Scanner(System.in);
System.out.println("請輸入存款金額(1000起存):");
int money=sc.nextInt();
while(money<1000)
{
System.out.println("金額過低!請重新輸入。");
money=sc.nextInt();
}
System.out.println("請輸入數(shù)字選擇存款年限:");
System.out.println("1.一年 2.兩年 3.三年 4.五年 ");
int year=sc.nextInt();
if(year==4){
year++;
}
//e.calculate(money,year,e.Interest(year));//本息計(jì)算
System.out.println("存入金額 "+money+" 年限 "+year+" 年的本息總額計(jì)算結(jié)果為:"+e.calculate(money,year,e.Interest(year)));
}
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧