Advertisement
ThaisAlmeida

Vetores 3

Jun 17th, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. int main
  2. {
  3.     int vetor[10],i,soma;
  4.     soma=0;
  5.     for(i=0;i<10;i++)
  6.     {
  7.         printf("Digite um numero");
  8.         scanf("%d", &vetor[i]);
  9.         soma=soma+vetor[i];
  10.     }
  11.     printf("O valor da soma eh %d", soma);
  12.         return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement