#include <iostream>
#include <cmath>
using namespace std;
int
main ()
{
cout << ('x' > 0xFF) || (3 * 5 < 35) && (53 > 5 * 3);
cout << ('x' > 0xFF);
cout << (3 * 5 < 35) && (53 > 5 * 3);
return 0;
}
Run Code Online (Sandbox Code Playgroud)
我得到 001 即使据我所知它应该是 101 。