Need help displaying this ASCII

Hello programmers, I'm basically trying to display this piece of Ascii text:
_____ _ _ __ __ _ _
/ ____| | | | | \/ | | | (_)
| (___ | | ___ | |_| \ / | __ _ ___| |__ _ _ __ ___
\___ \| |/ _ \| __| |\/| |/ _` |/ __| '_ \| | '_ \ / _ \
____) | | (_) | |_| | | | (_| | (__| | | | | | | | __/
|_____/|_|\___/ \__|_| |_|\__,_|\___|_| |_|_|_| |_|\___|


However, every time I cout every single line of it individually it still looks distorted, any suggestions?

EDIT: Huh.. Interesting.. Apparently it got distorted here as well when I copied it... So, suggestions?
Last edited on
It looks distorted due to the removed white spaces. How do you try to output this?
EDIT: Huh.. Interesting.. Apparently it got distorted here as well when I copied it... So, suggestions?

Here, use the [output][/output] tags
   _____ _       _   __  __            _     _            
  / ____| |     | | |  \/  |          | |   (_)           
 | (___ | | ___ | |_| \  / | __ _  ___| |__  _ _ __   ___ 
  \___ \| |/ _ \| __| |\/| |/ _` |/ __| '_ \| | '_ \ / _ \
  ____) | | (_) | |_| |  | | (_| | (__| | | | | | | |  __/
 |_____/|_|\___/ \__|_|  |_|\__,_|\___|_| |_|_|_| |_|\___|
                                                         

As for your program, you need to use "\\" to represent a single backslash, because that character is used to enter special characters such as '\n' for newline.
@Chervil, thank you very much, the double backslash trick worked out.
Topic archived. No new replies allowed.