📄 ex0214.cpp
字号:
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 2.14 on page 28
// Round-off Error
#include <iostream>
using namespace std;
int main()
{ // illustrates round-off error::
double x = 1000/3.0; cout << "x = " << x << endl; // x = 1000/3
double y = x - 333.0; cout << "y = " << y << endl; // y = 1/3
double z = 3*y - 1.0; cout << "z = " << z << endl; // z = 3(1/3) - 1
if (z == 0) cout << "z == 0.\n";
else cout << "z does not equal 0.\n"; // z != 0
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -