Advertisement
Wolfrost

Untitled

May 31st, 2016
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Traccia 2
  2.  
  3. #include <stdlib.h>
  4. #include <stdio.h>
  5.  
  6. main()
  7. {
  8.     int dim, vet[50], vet_pari[50], vet_dispari[50], i, k = 0, j = 0;
  9.    
  10.     printf("Inserire la dimensione del vettore (Massimo 50 elementi):\n");
  11.     scanf("%d",&dim);
  12.    
  13.     for (i=0; i<dim; i++)
  14.     {
  15.         printf("Inserisci vet[%d]: ", i);
  16.         scanf("%d",&vet[i]);
  17.     }
  18.    
  19.     for (i=0; i<dim; i++)
  20.     {
  21.         if (vet[i]%2==0)
  22.         {
  23.             vet_pari[k] = vet[i];
  24.             k++;
  25.         }
  26.         else
  27.         {
  28.             vet_dispari[j] = vet[i];
  29.             j++;
  30.         }
  31.     }
  32.    
  33.     printf("vet_pari:\n");
  34.     for (i=0; i<k; i++)
  35.         printf("%d\n", vet_pari[i]);
  36.     printf("vet_dispari:\n");
  37.     for (i=0; i<j; i++)
  38.         printf("%d\n", vet_dispari[i]);
  39.        
  40.     system("PAUSE");
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement