实例 C++ 对比两个值

x
 
#include <iostream>
using namespace std;
int main() {
  cout << (10 > 9);
  return 0;
}
                    

输出结果

1