📄 showinterest.java
字号:
/**
Program to show interest on a sample account balance.
Author: Jane Q. Programmer.
E-mail Address: janeq@somemachine.etc.etc.
Last Changed: September 21, 2004.
*/
public class ShowInterest
{
public static final double INTEREST_RATE = 2.5;
public static void main(String[] args)
{
double balance = 100;
double interest; //as a percent
interest = balance * (INTEREST_RATE/100.0);
System.out.println("On a balance of $" + balance);
System.out.println("you will earn interest of $"
+ interest);
System.out.println("All in just one short year.");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -