Hueestory

[2557] Hello World (C++) 본문

PS(중단)/BOJ

[2557] Hello World (C++)

히명 2024. 4. 25. 10:12
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	cout << "Hello World!";

	return 0;
}

 

1. 여러 방법이 있지만, iostream의 출력 방식 cout을 사용

 

'PS(중단) > BOJ' 카테고리의 다른 글

[2577] 숫자의 개수 (C++)  (0) 2024.04.25
[2562] 최댓값 (C++)  (0) 2024.04.25
[2475] 검증수 (C++)  (0) 2024.04.25
[2439] 별 찍기 - 2 (C++)  (0) 2024.04.25
[2438] 별 찍기 - 1 (C++)  (0) 2024.04.25
Comments