ex0214.cpp
来自「practice c++, it is from the book http:/」· C++ 代码 · 共 17 行
CPP
17 行
// 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 + =
减小字号Ctrl + -
显示快捷键?