invest.java
来自「一个十分好的java基础学习的课件」· Java 代码 · 共 18 行
JAVA
18 行
class Invest
{
public static void main(String[] args)
{
float total = 14000;
System.out.println("Original investment: $" + total);
// Inceases by 40 percent the first year
total = total + (total * .4F);
System.out.println("After one year: $" + total);
// Loses $1,500 the second year
total = total - 1500F;
System.out.println("After two years: $" + total);
// Increases by 12 percent the third year
total = total + (total * .12F);
System.out.println("After three years: $" + total);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?