Advertisement
wagner-cipriano

Introdução Vetores

Nov 3rd, 2020
646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void leVetor(int v[], int n){
  5.     for (int i=0; i<n; i++) {
  6.       cout << "Digite o valor da posição " << i << ": ";
  7.       cin >> v[i];
  8.     }
  9. }
  10.  
  11. void imprimeVetor(int v[], int n){
  12.     for (int i=0; i<n; i++) // 0, 1, 2,  3,  4
  13.       cout << v[i] << "  "; // 7  5  9  -1  -4
  14. }
  15.  
  16. int soma(int v[], int n){
  17.     int s = 0;
  18.     for (int i=0; i<n; i++) {
  19.       s += v[i];
  20.     }
  21.     return s;
  22. }
  23.  
  24.  
  25. int main (){
  26.     int n, s;
  27.     cout << "Digite o tamanho do vetor: ";
  28.     cin >> n;
  29.     int notas[n]; //Declara um vetor int de n posições
  30.  
  31.     //Ler o vetor notas
  32.     leVetor(notas, n);
  33.  
  34.     //Imprimir o vetor
  35.     cout << "\nOs dados do vetor notas: \n";
  36.     imprimeVetor(notas, n);
  37.  
  38.     //Soma dos valores
  39.     s = soma(notas, n);
  40.     cout << "\n\nA soma dos elementos do vetor é: " << s << endl;
  41. }
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement