blob: 08e29b61f8083859d9115a55c9dac891fa1ffb89 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #include <iostream>
using namespace std;
int main(void)
{
  bool a = false;
  bool b = true;
  cout << (!a && b) << endl;
  double c = 0;
  if (c) cout << "xx" << endl;
}
 |