Advertisement
vitormartinotti

Untitled

Apr 10th, 2025
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. int main(){
  4.     int n, soma=0;
  5.     scanf("%d", &n);
  6.     while(n--){
  7.         int num;
  8.         scanf("%d", &num);
  9.         soma += num;
  10.     }
  11.     printf("%d", soma);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement