출처 : HackerRank - Say “Hello, World!” With C++
Say “Hello, World!” With C++
목적
C++ 를 사용하여 Hello, World! 를 화면 stdout 에 출력하는 프로그램을 작성합니다.
요구사항
입력 형식
없습니다.
출력 형식
stdout 에 Hello, World! 를 출력합니다.
예시 출력
Hello, World!
프로그램
#include <iostream>
#include <cstdio>
using namespace std;
int main() {
cout << "Hello, World!" << endl;
return 0;
}
'프로그래밍 언어 > C++' 카테고리의 다른 글
C++ 가변 배열(Variable Sized Arrays) (0) | 2020.02.10 |
---|---|
C++ String (0) | 2018.10.19 |
C++ 클래스(Class) (0) | 2018.07.06 |
Functions (0) | 2018.06.13 |
Arrays Introduction (0) | 2018.06.12 |