반응형

https://www.acmicpc.net/problem/2557

 

2557번: Hello World

Hello World!를 출력하시오.

www.acmicpc.net

 


  • 문제

백준 2557번: Hello World

기본적인 출력 문제입니다. 

 


 

  • 문제풀이

기본적인 출력 문제로, printf 함수에 대해서 알고 있다면 쉬운 문제일 것입니다. 

 

1. Hello World! 라는 단어를 출력한다. 

#include <stdio.h>

int main()
{
    printf("Hello World!");
    return 0;
}

 


 

  • 마무리

기본적인 문제부터 심화 문제까지 달려보겠습니다.

반응형

'백준' 카테고리의 다른 글

[C언어] 백준 1008번: A/B  (0) 2023.09.27
[C언어] 백준 10998번: A*B  (0) 2023.09.27
[C언어] 백준 1001번: A-B  (0) 2023.09.27
[C언어] 백준 1000번: A+B  (0) 2023.09.17

+ Recent posts