📄 interstcompute.java
字号:
public class InterstCompute { public static void main(String[] args) { double newBalance; double previousBalance=100; double interestRate=0.05; newBalance = previousBalance * Math.pow((1 + interestRate),5); System.out.println("Five years later the newBlance is: " + newBalance); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -