josiftepe

Untitled

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