#第1关:Java 程序设计-设计初识#
任务描述
本次实验的任务:编写一个能计算投资收益的程序。
相关知识
为了完成本实验,你需要掌握: 1.如何定义合适类型的变量,并完成指定变量的赋值 2.如何利用 System.out.println()与 System.out,printf() 这两个输出函数
输出函数println()
System.out.println() 可用输出相应的内容,并产生回车换行操作。
System.out.println("要输出的提示内容");
int a=10;
System.out.println("要输出的提示内容:"+a);
输出:要输出的提示内容:
要输出的提示内容:10
输出函数printf()
System.out.printf() 可在指定位置插入相应的内容进行输出,无回车换行操作。
int a=10;
System.out.printf("要输出的提示内容:%d\n",f);//产生输出并换行
double f=1.2;
System.out.printf("8.2%f要输出的提示内容",f);
输出:要输出的提示内容:10
1.2要输出的提示内容
#
编程要求#
根据提示,在右侧编辑器补充代码,计算并输出投资收益
#测试说明#
平台会对你编写的代码进行测试:
测试输入:无; 预期输出: 10000.00本金带来的收益为1000.00
第2年的本金还剩:9500.0
9500.00本金带来的收益为285.00
第3年的积累的本金:9785.0
提示:
int a = 3;
int b = 2;
System.out.println(a/b);
System.out.println((double)(a/b));
输出: 1
1.5
#答案如下#
public class Text_investment {
public static void main(String[] args) {
/*1、定义 本金变量(capital) 同时赋值1万;定义新本金变量(new_capital)和收益变量(income), 上述三变量都设置为实数类型*/
/*********begin-1********/
double capital=10000,new_capital,income;
/*********end**********/
/*2、第一年 投资增长10%,计算投资收益、计算新的本金值、显示 ***本金带来的收益为***(利用printf()实现)*/
/*********begin-2********/
new_capital=(1+0.1)*capital;
income= new_capital-capital;
System.out.printf("10000.000000本金带来的收益为%f\n",income);
/*********end**********/
/*3、第二年投资损失1500,计算第二年新的本金值、显示第2年的本金还剩:***(利用println()实现)*/
/*********begin-3********/
new_capital =new_capital-1500;
System.out.println("第2年的本金还剩:"+new_capital);
/*********end**********/
/*4、第三年投资增长3%,计算投资收益、计算新的本金值、显示 ***本金带来的收益为***(利用printf()实现)、显示3年的积累的金额:****(利用println()实现)*/
/*********begin-4********/
income= new_capital*0.03;
new_capital=new_capital*(1+0.03);
System.out.printf("9500.000000本金带来的收益为%f\n",income);
System.out.println("3年的积累的金额:"+new_capital);
/*********end**********/
}
}
都看到这里了,不关注一下嘛,嘿嘿