Advertisement
Josif_tepe

Untitled

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