Skip to content

Instantly share code, notes, and snippets.

@yujiokayama
Created May 3, 2019 03:11
Show Gist options
  • Select an option

  • Save yujiokayama/03690c5a8e854adef46e8b444ab4701a to your computer and use it in GitHub Desktop.

Select an option

Save yujiokayama/03690c5a8e854adef46e8b444ab4701a to your computer and use it in GitHub Desktop.
//奇数の場合
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