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