为什么当你放一个空的 if 语句时,程序仍然为一个整数变量产生一个值(零)?
这是一个简单的程序来比较三个整数并打印它们是否全部或任何一个大于 10。在第 42 行,有一个带分号的空 else 语句。如果用户输入 z 为 6,则程序不应返回 z1 =0。
#include <iostream> // include iostream class for input and output
#include <string> // for strings operation
#include <sstream> // for stringstream operations
using namespace std; // use defintion from std namespace
int main ()
{
int x, y, z; // define three user-input integers
int x1, y1, z1; // variables to hold bool values
stringstream xyz; // variable to store whole bool value
int XYZ; // variable to condiition print
// prompt user for x, y and z input
cout << "Please enter x" << "\n";
cin >> x;
cout << "Please enter y" << "\n";
cin >> y;
cout << "Please enter z" << "\n";
cin >> z;
// generate bool values of x1, y1, z1
if ( 10/x < 1)
x1 = 1;
else
x1 = 0;
if ( 10/y < 1)
y1 = 1;
else
y1 = 0;
if ( 10/z < 1)
z1 = 1;
else
;
// read into xyz and then XYZ
xyz << x1 << y1 << z1;
xyz >> XYZ;
// generate 8 print statements
if (XYZ == 111)
;
if (XYZ == 000)
cout << "x, y, z < 10" << endl;
if (XYZ == 110)
cout << "x, y > 10 and z < 10" << endl;
if (XYZ == 101)
cout << "x, z > 10 and y < 10" << endl;
if (XYZ == 100)
cout << "y, z < 10 and x > 10" << endl;
if (XYZ == 011)
cout << "y, z > 10 and x < 10" << endl;
if (XYZ == 010)
cout << "x, z < 10 and y > 10" << endl;
if (XYZ == 001)
cout << "x, y < 10 and z > 10" << endl;
} // program main ends
我花了几个小时来研究这个,但大多数讨论都是关于 if 语句之后的分号语法错误或其他一些主题。
(注意:第 51 行已被更正以在控制台上不显示任何内容)。
有人在 Mac OSX 10.8.4 上遇到过这个问题吗?它与默认的 LLVM 编译器有关吗?
谢谢。