반응형

백준 23234번 The World Responds 풀이 코드

C | C++ | Java | Python

영어(English)


문제 해설

"Hello world!"는 식상합니다. "The world says hello!"를 출력합시다.

풀이

"The world says hello!"를 출력합니다.

코드

#include <stdio.h>

int main() {
    printf("The world says hello!");
    return 0;
}
#include <iostream>
using namespace std;

int main() {
    cout << "The world says hello!";
    return 0;
}
public class Main {
    public static void main(String[] args) {
        System.out.print("The world says hello!");
    }
}
print('The world says hello!')

문제 출처

https://www.acmicpc.net/problem/23234

반응형

+ Recent posts