fork(1) download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. const char* tree = R"(
  6. *
  7. * *
  8. * *
  9. * *
  10. * *
  11. ***** *****
  12. * *
  13. * *
  14. * *
  15. * *
  16. ***** *****
  17. * *
  18. * *
  19. * *
  20. * *
  21. ****** ******
  22. * *
  23. *****
  24. )";
  25. std::cout << tree << "\n";
  26. return 0;
  27. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
       *
      * *
     *   *
    *     *
   *       *
  ***** *****
     *   *
    *     *
   *       *
  *         *
 *****   *****
    *     *
   *       *
  *         *
 *           *
******   ******
     *   *
     *****