Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 6- lesson 8 c course

unable to solve this
by

1 Answer

sam5epi0l
Try this code:


#include <stdio.h>

int main() {

int dividend, divisor;

scanf("%d %d", &dividend, &divisor);

(dividend / divisor > 0) ? printf("Completely divisible") : printf("Not completely divisible");
return 0;
}

Login / Signup to Answer the Question.