📄 basicmathdemo.java
字号:
public class BasicMathDemo { public static void main(String[] args) { double a = -191.635; double b = 43.74; int c = 16, d = 45; System.out.printf("The absolute value of %.3f is %.3f%n", a, Math.abs(a)); System.out.printf("The ceiling of %.2f is %.0f%n", b, Math.ceil(b)); System.out.printf("The floor of %.2f is %.0f%n", b, Math.floor(b)); System.out.printf("The rint of %.2f is %.0f%n", b, Math.rint(b)); System.out.printf("The max of %d and %d is %d%n",c, d, Math.max(c, d)); System.out.printf("The min of of %d and %d is %d%n",c, d, Math.min(c, d)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -