Posts by Klaus Malone • 13 points
1 post
-
1
votes1
answer70
viewsQ: I can’t get this program to work. It always says the numbers are divisible
#include <stdio.h> #include "funcao.h" int main () { int a, b; printf("Escreva os valores de a e b "); scanf("%d", &a); scanf("%d", &b); if (EDivisivel (a,b)) printf("sao divisiveis");…