Created
May 3, 2019 03:11
-
-
Save yujiokayama/03690c5a8e854adef46e8b444ab4701a to your computer and use it in GitHub Desktop.
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
| //奇数の場合 | |
| if( ( Number % 2 ) != 0 ) { | |
| } | |
| //偶数の場合 | |
| if( ( Number % 2 ) == 0 ) { | |
| } | |
| //3の倍数の場合 | |
| if( ( Number % 3 ) == 0 ) { | |
| } | |
| //5の倍数の倍数 | |
| if( ( Number % 5 ) == 0 ) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment