Created
September 2, 2019 07:10
-
-
Save showyou/689f6609c3ef4ea9a8ce985b5eba9e93 to your computer and use it in GitHub Desktop.
maxの引数
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> | |
| int main(){ | |
| int x = 1; | |
| int ans = 0; | |
| ans = std::max(x, ans); | |
| std::cout << ans << std::endl; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
result
1