Advertisement
Josif_tepe

Untitled

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