Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int SommaVettore(int vet[],int n);///il vettore da sommare e la lunghezza
- ///--------funzione calcolo vettore-------//
- int SommaVettore(int vet[],int n)///riporta il numero sommato
- {
- int i=0;
- int somma=0;
- do{
- somma=vet[i]+somma;
- i++;
- }while(i<n);
- return somma;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement