2557. hello World
Python
print("Hello World!")
C++
방법 1) [iostream]
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
방법 2) [stdio.h]
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
방법 3) [cstdio]
include <cstdio>
int main() {
printf("Hello World!");
return 0;
}
'코딩테스트 > 백준 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 2606번 바이러스 (0) | 2022.02.14 |
---|---|
[백준 알고리즘] 1260번 DFS와 BFS (0) | 2022.02.14 |
[백준 알고리즘] 2745번 진법 변환 (0) | 2022.02.08 |
[백준 알고리즘] 5692번 팩토리얼 진법 (0) | 2022.02.08 |
[백준 알고리즘] 10816번 숫자 카드 2 (0) | 2022.01.25 |