Josif_tepe

Untitled

Jan 26th, 2026
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7.    
  8.     int n;
  9.     cin >> n;
  10.    
  11.     int zbir = 0;
  12.    
  13.     for(int i = 1; i <= n; i++) {
  14.         int x;
  15.         cin >> x;
  16.        
  17.         zbir += x;
  18.     }
  19.    
  20.     cout << zbir << endl;
  21.     return 0;
  22. }
  23.  
  24. // i = 1
  25. // i = 2
  26. // i = 3
  27.  
Advertisement
Add Comment
Please, Sign In to add comment