Advertisement
informaticage

Somma array paralleli

May 13th, 2016
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     // Dichiaro il numero di elementi
  8.     const int N_ELEMENTI = 5;
  9.  
  10.     // Dichiaro i 3 vettori di N elementi
  11.     int array_a[N_ELEMENTI];
  12.     int array_b[N_ELEMENTI];
  13.     int array_tot[N_ELEMENTI];
  14.  
  15.     cout << "Array A: ";
  16.     for(int i = 0; i < N_ELEMENTI; i++)
  17.         cin >> array_a[i];
  18.  
  19.     cout << "Array B: ";
  20.     for(int i = 0; i < N_ELEMENTI; i++)
  21.         cin >> array_b[i];
  22.  
  23.     // Somma array
  24.     for(int i = 0; i < N_ELEMENTI; i++)
  25.         array_tot[i] = array_a[i] + array_b[i];
  26.  
  27.     // Stampa la somma
  28.     cout << "Array A + B: ";
  29.     for(int i = 0; i < N_ELEMENTI; i++)
  30.         cout << array_tot[i] << " ";
  31.  
  32.     return 0;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement