[백준 23234] The World Responds (C#, C++) - soo:bak
작성일 :
문제 링크
설명
입력 없이 "The world says hello!"를 출력합니다.
접근법
정해진 문장을 그대로 출력하면 됩니다.
Code
C#
1
2
3
4
5
6
7
using System;
class Program {
static void Main() {
Console.WriteLine("The world says hello!");
}
}
C++
1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout << "The world says hello!\n";
return 0;
}