CJCoding With Joseph

Function: Is Divisible

Write a function isDivisible(int a, int b) that returns 1 if a is evenly divisible by b and 0 otherwise. Read two integers a and b from input and print the result. For input 12 4 the output is:

1

Print 1 or 0 with %d.

Expected Output:

1
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
12 4
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.