♕BronzeⅤ
문제
Hello World!를 출력하시오.
출력
Hello World!를 출력하시오.
C
#include<stdio.h> int main() { printf("Hello World!"); return 0; }
C++
#include<iostream> using namespace std; int main() { cout << "Hello World!"; return 0; }
가장 기본적인 문제였지만 C 안 쓴 지 오래돼서 잠시 구글의 힘을 빌렸다.. 그래도 슬슬 기억이 나는 걸 보니 다음 문제부터는 수월하게 할 수 있을 것 같다.