Advertisement
Jordimario

compito di recupero

Feb 12th, 2018
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.70 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define MAX 100
  4. int main()
  5. {
  6.     int vet[MAX];
  7.     int x=0;
  8.     int y=0;
  9.     int num;
  10.     printf("Quanti numeri\n");
  11.     scanf("%d", &num);
  12.     while(x<num)
  13.     {
  14.     x++;
  15.     printf("Inserisci Numero %d\n", x);
  16.     scanf("%d", &vet[x]);
  17.     if(vet[x]%3){
  18.  
  19.     }
  20.     else
  21.             {
  22. printf("il numero [%d] e' multiplo di 3\n", vet[x]);
  23.         }
  24.     }
  25.     x=0;
  26.  
  27.  
  28.     printf("i numeri multipli di 3 nel vettore sono\n\n");
  29.  
  30.     while(x<num)
  31.         {
  32.         x++;
  33.         if(vet[x]%3)
  34.         {
  35.  
  36.         }
  37.         else
  38.         {
  39.             y++;
  40.  
  41. printf("il %d numero [%d] \n",x, vet[x]);
  42.         }
  43.         }
  44.  
  45.     return 0;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement