Skip to content

Instantly share code, notes, and snippets.

@chuangbo
Created June 21, 2012 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuangbo/2966157 to your computer and use it in GitHub Desktop.
Save chuangbo/2966157 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main() {
if ( (10 > 5 > 3) == true) {
cout << "10 > 5 > 3 = true" << endl;
} else {
cout << "10 > 5 > 3 = false" << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment