Created
May 30, 2015 15:26
-
-
Save osyo-manga/f1cc61e87e02a226f02d to your computer and use it in GitHub Desktop.
hage
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> | |
| #include <algorithm> | |
| int | |
| min(int n, int m){ | |
| return n + m; | |
| } | |
| int | |
| main(){ | |
| { | |
| using std::min; | |
| std::cout << min(1, 2) << std::endl; | |
| } | |
| { | |
| using namespace std; | |
| std::cout << min(1, 2) << std::endl; | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment