Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void leVetor(int v[], int n){
- for (int i=0; i<n; i++) {
- cout << "Digite o valor da posição " << i << ": ";
- cin >> v[i];
- }
- }
- void imprimeVetor(int v[], int n){
- for (int i=0; i<n; i++) // 0, 1, 2, 3, 4
- cout << v[i] << " "; // 7 5 9 -1 -4
- }
- int soma(int v[], int n){
- int s = 0;
- for (int i=0; i<n; i++) {
- s += v[i];
- }
- return s;
- }
- int main (){
- int n, s;
- cout << "Digite o tamanho do vetor: ";
- cin >> n;
- int notas[n]; //Declara um vetor int de n posições
- //Ler o vetor notas
- leVetor(notas, n);
- //Imprimir o vetor
- cout << "\nOs dados do vetor notas: \n";
- imprimeVetor(notas, n);
- //Soma dos valores
- s = soma(notas, n);
- cout << "\n\nA soma dos elementos do vetor é: " << s << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement