Advertisement
Josif_tepe

Untitled

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