출력하기09 [0009 / 0009] 
Time Limit(Test case) : 1000(ms)Number of users who solved : 6093 Total Tried : 7454
The Champion of this Problem (C++) : kimtaeyoon49 - 0ms / 89byte
My Best Submission (C++) : N/A
[JKJeong 2013]

Background
출력문 연습의 마지막 문제이다.(** 이 문제는 건너 뛰어도 된다.)
(생각과 시도를 많이 해야하는 문제들은 한 두 문제씩 넘겼다가 나중에 풀어보면 된다.)
이번에는 다음과 같은 C프로그램의 소스파일을 출력해보자.
(들여쓰기 부분은 공백(' ') 4개이다.)
#include<stdio.h>
main()
{
printf("Hello World\n");
}
위 프로그램을 출력하시오.
** 주의 : 본 화면에서 복사하여 붙여넣기하면 제대로 되지 않을 수 있으니 직접 소스코드를 작성해 넣어야 한다.
(C언어 기초 100제 v1.1)
Input
없음Output
#include<stdio.h>main()
{
printf("Hello World\n");
}
를 그대로 출력한다.
IO Example
입력없음
출력
#include<stdio.h>
main()
{
printf("Hello World\n");
}
Prob Analysis : [Problem Statistics] | [Solution]