📄 e309. incrementing a double by the smallest possible amount.txt
字号:
double d = 1.2;
// Get the largest double less than d
double d1 = ChoiceFormat.previousDouble(d); // 1.1999999999999997
// Get the smallest double greater than d
double d2 = ChoiceFormat.nextDouble(d); // 1.2000000000000002
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -