Guest User

Untitled

a guest
Jul 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6.   int x, y;
  7.  
  8.   printf("Insira o primeiro numero:");
  9.   scanf("%d", &x);
  10.  
  11.   printf("Insira o segundo numero:");
  12.   scanf("%d", &y);
  13.  
  14.   if (x%y==0) {
  15.   printf ("%d eh multplo de %d", x,y);
  16.   }
  17.   else {
  18.   printf ("%d nao eh multplo de %d\n\n", x,y);    
  19.          }
  20.  
  21.   system("PAUSE"); 
  22.   return 0;
  23. }
Add Comment
Please, Sign In to add comment