2393

#include <stdio.h>

int main (void){
    printf("  ___  ___  ___\n  | |__| |__| |\n  |           |\n   \\_________/\n    \\_______/\n     |     |\n     |     |\n     |     |\n     |     |\n     |_____|\n  __/       \\__\n /             \\\n/_______________\\");
    
    return 0;
}


이렇게 쉬운 문제 그냥 출력 문제였는데 왜 하는지 생각해봤는데,
printf()에서 \(백슬래쉬) 를 출력할 때 \\를 두개써야지 잘 출력되는거라고 알려줄려고 그런거 같다.

+ Recent posts