Advertisement
Josif_tepe

Untitled

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