Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main ()
- {
- int n1, n2, mult1, mult2;
- printf ("Entre com dois numeros:");
- scanf ("%d %d", &n1, &n2);
- if (n1%n2==0 || n2%n1==0)
- printf ("Os numeros sao multiplos entre si");
- else
- printf ("Os numeros nao sao multiplos entre si");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment