gimmickbutreal

[백준/C++] 2557번 - C++ 본문

Algorithm/C++

[백준/C++] 2557번 - C++

isshosng 2022. 3. 9. 16:10

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

 

2557번: Hello World

Hello World!를 출력하시오.

www.acmicpc.net

 

 
1
2
3
4
5
6
#include <iostream>
 
int main() {
    std::cout << "Hello World!";
    return 0;
}
cs

iostream은 C++의 표준 입출력 헤더파일이며 대표적으로 cout 객체를 통해 출력한다.