1、小明要到美国旅游,但那边的温度是以华氏温度为单位记录的。他需要一个程序把华氏温度转换为摄氏温度,并以华氏温度和摄氏温度为单位分别显示该温度,编写程序实现此功能。要求:可以从控制台录入温度信息。
代码如下:
public class Test {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.print("当前华式度:");
double fahrenheit = sc.nextDouble();
System.out.println();
double ceksius =5/9.0*(fahrenheit-32);
System.out.println("当前摄氏度:"+ceksius);
}
}
2、银行提供了整存整取定期储蓄物业,其存款分为一年、两年、三年、五年,到期凭存单支取本息。年利率为一年2.25两年2.7三年3.24五年3.6。编写一个程序输入存入的本金数目,计算存期为一年、两年、三年、五年,到期取款时,银行应支付的本息分别为多少
代码如下:
public class Test {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("请输入要存取的本金");
double money = sc.nextDouble();
int year1,year2,year3,year5;
year1=1;
year2=2;
year3=3;
year5=5;
double reat1,reat2,reat3,reat5;
reat1=0.0225;
reat2=0.027;
reat3=0.0324;
reat5=0.036;
double lnterest1,lnterest2,lnterest3,lnterest5;
lnterest1=money*reat1*year1;
lnterest2=money*reat2*year2;
lnterest3=money*reat3*year3;
lnterest5=money*reat5*year5;
System.out.println
("本金:"+money+",一年的利息:"+lnterest1+",一年的本金利息总和:"+(money+lnterest1));
System.out.println
("本金:"+money+",二年的利息:"+lnterest2+",一年的本金利息总和:"+(money+lnterest2));
System.out.println
("本金:"+money+",三年的利息:"+lnterest3+",一年的本金利息总和:"+(money+lnterest3));
System.out.println
("本金:"+money+",四年的利息:"