Created
May 13, 2015 08:33
-
-
Save Baekjoon/6f81d16dd22ee30fa323 to your computer and use it in GitHub Desktop.
if3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main() { | |
int a, b; | |
cin >> a >> b; | |
if (a == b) { | |
cout << "같다" << endl; | |
} else if (a < b) { | |
cout << "작다" << endl; | |
} else if (a > b) { | |
cout << "크다" << endl; | |
} else if (a != b) { | |
cout << "같지않다" << endl; | |
} else { | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment