fork(1) download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4. int main()
  5. {
  6. using namespace std;
  7. vector<string> data =
  8. {
  9. " /||",
  10. " / ||",
  11. " \\ ||",
  12. " \\||",
  13. " ||",
  14. " _ /||",
  15. " / \\ / ||",
  16. " \\_/ \\ ||",
  17. " | \\||",
  18. " /|\\ ||",
  19. " / | \\ /||",
  20. " / | \\ / ||",
  21. " / \\ \\ ||",
  22. " / \\ \\||",
  23. " / \\ /||",
  24. " \\_________________/ / ||",
  25. " / \\ / \\ \\ ||",
  26. " \\_/ \\_/ \\||",
  27. "------------------------------------------------"
  28. };
  29.  
  30. for (auto& s : data)
  31. cout << s << endl;
  32. }
  33.  
  34.  
Success #stdin #stdout 0s 3232KB
stdin
Standard input is empty
stdout
                                         /||
                                        / ||
                                        \ ||
                                         \||
                                          ||
           _                             /||
          / \                           / ||
          \_/                           \ ||
           |                             \||
          /|\                             ||
         / | \                           /||
        /  |  \                         / ||
          / \                           \ ||
         /   \                           \||
        /     \                          /||
   \_________________/                  / ||
      / \      / \                      \ ||
      \_/      \_/                       \||
------------------------------------------------