Advertisement
vlatkovski

Торта helper

Jun 9th, 2018
444
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. using namespace std;
  4.  
  5. int main() {
  6.     int t = 1;
  7.     for (int x = 1; x <= 50; ++x) {
  8.         cout << "x = ";
  9.         cout << setw(2) << x;
  10.         cout << "   t = " << setw(4) << t;
  11.         cout << "   ";
  12.         for (int j = 1; j <= x; ++j) {
  13.             cout << j;
  14.             ++t;
  15.         }
  16.         cout << '\n';
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement