Advertisement
Hamikadze

Untitled

Oct 31st, 2020
966
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.74 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3.                               Online C++ Compiler.
  4.                Code, Compile, Run and Debug C++ program online.
  5. Write your code in this editor and press "Run" button to compile and execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <iostream>
  10. #include <stdio.h>
  11. #include <iomanip>
  12. #include <string.h>
  13.  
  14. using namespace std;
  15.  
  16. int
  17. main ()
  18. {
  19.    
  20.     const char* text[5] = { "Вася", "пошёл",
  21.                              "гулять", "в лес", "за грбами" };
  22.   for (int i = 0; i < 5; i++)
  23.     cout << setw((i + 1) * 4 + strlen(text[i])) << text[i] << endl;
  24.  
  25.   return 0;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement