wes d2a2ba9e15 first commit vor 4 Jahren
..
README.md d2a2ba9e15 first commit vor 4 Jahren
code.cpp d2a2ba9e15 first commit vor 4 Jahren
unitTest.cpp d2a2ba9e15 first commit vor 4 Jahren

README.md

Multiple of 100

by Helen Yu tags: algebra, conditions, math, validation

Summary

Create a function that takes an integer and returns true if it's divisible by 100, otherwise return false. Examples divisible(1) ➞ false divisible(1000) ➞ true divisible(100) ➞ true Notes Don't forget to return the result. If you get stuck on a challenge, find help in the Resources tab. If you're really stuck, unlock solutions in the Solutions tab.

Instructions

Create a function that takes an integer and returns true if it's divisible by 100, otherwise return false.

Examples

divisible(1) ➞ false

divisible(1000) ➞ true

divisible(100) ➞ true

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.