Advertisement
informaticage

Indice e contenuto pari

May 13th, 2016
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     // Definisce il numero di elementi
  8.     const int N_ELEMENTI = 10;
  9.  
  10.     // Dichiara un vettore di N elementi
  11.     int array[N_ELEMENTI];
  12.  
  13.     cout << "Inserire 10 numeri: ";
  14.     for(int i = 0; i < N_ELEMENTI; i++)
  15.     // Caricamento del vettore
  16.         cin >> array[i];
  17.  
  18.     for(int i = 0; i < N_ELEMENTI; i+=2)
  19.     // Stampa gli elementi multipli di 2 quindi pari
  20.         if(array[i] % 2 == 0)
  21.         // Se l'elemento è pari
  22.             cout << array[i] << " ";
  23.  
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement