code.cpp 169 B

123456
  1. /*Create a function that takes an integer and returns true
  2. if it's divisible by 100, otherwise return false.*/
  3. bool divisibleByHundred(int num) {
  4. return 0==num%100;
  5. }