본문 바로가기

Coding/백준

2557번 Hello World

 Hello World! 출력하면 된다.

 

 정답 비율이 생각보다 엄청 낮아서 제출하면서도 이게 아닌가 싶었는데 그냥 진짜로 Hello World! 만 출력하면 된다.

 

 

1
2
3
4
5
6
7
8
#include <iostream>
 
using namespace std;
 
int main(){
    cout << "Hello World!" << endl;
}
 
cs

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

2839번 설탕 배달  (0) 2021.04.26
1008번 A/B  (0) 2021.03.13
14438번 수열과 쿼리 17  (0) 2021.03.10
10868번 최솟값  (0) 2021.03.10
2357번 최솟값과 최댓값  (0) 2021.03.09