작성일 :

문제 링크

2557번 - Hello World

설명

새로운 프로그래밍 언어를 배울 때, 가장 먼저 해보는 관례인 “Hello World!” 를 출력하는 문제입니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
namespace Solution {
  class Program {
    static void Main(string[] args) {

      Console.WriteLine("Hello World!");

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
#include <bits/stdc++.h>

using namespace std;

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

  cout << "Hello World!\n";

  return 0;
}