Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- // Definisce il numero di elementi
- const int N_ELEMENTI = 10;
- // Dichiara un vettore di N elementi
- int array[N_ELEMENTI];
- cout << "Inserire 10 numeri: ";
- for(int i = 0; i < N_ELEMENTI; i++)
- // Caricamento del vettore
- cin >> array[i];
- for(int i = 0; i < N_ELEMENTI; i+=2)
- // Stampa gli elementi multipli di 2 quindi pari
- if(array[i] % 2 == 0)
- // Se l'elemento è pari
- cout << array[i] << " ";
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement