!1+2>1
并且编写一段代码输出它的结果。
#include <iostream.h> int main() { cout<<(!1+2>1); return 0; }
结果为1
2大于1为真返回1,!1为假返回0,0+1=1
Print !1+2>1
应该显示:
False