Problem with Text art in console

So basically I was trying to put a text art in the console and all of a sudden the text art is mess up


std::cout << " ____ _ _ _____ _ _ _";
std::cout << " / __ \ (_) | | / ____| | | (_) |";
std::cout << "| | | |_ _ _ ___| | _| (___ _ __ | | ___ _| |_";
std::cout << "| | | | | | | |/ __| |/ /\___ \| '_ \| |/ _ \| | __|";
std::cout << "| |__| | |_| | | (__| < ____) | |_) | | (_) | | |_";
std::cout << "\___\_\\__,_|_|\___|_|\_\_____/ | .__/|_|\___/|_|\__|";
std::cout << "| |";
std::cout << "|_|";
it suppose to say quicksploit
Post a link to where it came from so we can see the original.
This program sounds like some shit used to try to exploit windows for remote access... don't know why I'm even aiding in this (I guess because this code snippet is purely aesthetic) but here you go...


       _ _   
     /___ \_   _(_) ___| | __/ _\_ __ | | ___ (_) |_ 
    //  / / | | | |/ __| |/ /\ \| '_ \| |/ _ \| | __|
   / \_/ /| |_| | | (__|   < _\ \ |_) | | (_) | | |_ 
   \___,_\ \__,_|_|\___|_|\_\\__/ .__/|_|\___/|_|\__|
                                |_|                  
Last edited on
One way to display it (using raw strings, so the newline needs to be outside).
1
2
3
4
5
6
7
    std::cout <<
        R"(       _ _                                            )" <<'\n'<<
        R"(     /___ \_   _(_) ___| | __/ _\_ __ | | ___ (_) |_  )" <<'\n'<<
        R"(    //  / / | | | |/ __| |/ /\ \| '_ \| |/ _ \| | __| )" <<'\n'<<
        R"(   / \_/ /| |_| | | (__|   < _\ \ |_) | | (_) | | |_  )" <<'\n'<<
        R"(   \___,_\ \__,_|_|\___|_|\_\\__/ .__/|_|\___/|_|\__| )" <<'\n'<<
        R"(                                |_|                   )";

Topic archived. No new replies allowed.