赞
踩
目录
- #include<iostream>
- using namespace std;
-
- int main() {
- //比较运算符
-
- // ==
- int a = 10;
- int b = 20;
- cout << (a == b) << endl;
-
- // !=
- cout << (a != b) << endl;
-
- //>
- cout << (a > b) << endl;
-
- //<
- cout << (a < b) << endl;
-
- //>=
- cout << (a >=b) << endl;
-
- //<=
- cout << (a <=b) << endl;
- system("pause");
- return 0;
- }
0
1
0
1
0
1
请按任意键继续. . .
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。