code.cpp 78 B

1234
  1. bool divisibleByFive(int num) {
  2. if (num%5==0) {return true;}
  3. return false;
  4. }