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을 사용