19 lines
201 B
C
19 lines
201 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
|
|
int x;
|
|
|
|
printf("Enter number: ");
|
|
scanf("%d", &x);
|
|
|
|
if (!(11 % x)) {
|
|
printf("is multiple\n");
|
|
} else {
|
|
printf("not multiple\n");
|
|
}
|
|
|
|
|
|
return 0;
|
|
}
|