Advertisement
Jordimario

FUNZIONE Somma Il Vettore

May 19th, 2018
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. int SommaVettore(int vet[],int n);///il vettore da sommare e la lunghezza
  2.  
  3.  
  4.  
  5. ///--------funzione calcolo vettore-------//
  6. int SommaVettore(int vet[],int n)///riporta il numero sommato
  7. {
  8. int i=0;
  9. int somma=0;
  10. do{
  11.  
  12. somma=vet[i]+somma;
  13. i++;
  14. }while(i<n);
  15. return somma;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement