[백준] 5338번

park jinwoo·2022년 12월 5일
0

백준

목록 보기
18/94

https://edu.dojang.io/mod/page/view.php?id=1615
마이크로소프트 로고를 예제 출력처럼 출력하는 프로그램을 작성하시오.

<script>
#include <stdio.h>
int main() {
    printf("       _.-;;-._\n");
    printf("'-..-'|   ||   |\n");
    printf("'-..-'|_.-;;-._|\n");
    printf("'-..-'|   ||   |\n");
    printf("'-..-'|_.-''-._|");
    
    return 0;
}
</script>

0개의 댓글