반응형
백준 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!')
문제 출처
반응형
'Coding > BAEKJOON' 카테고리의 다른 글
[백준] 20254번 Site Score 풀이 코드 (C/C++/Java 자바/Python 파이썬) (0) | 2021.10.26 |
---|---|
[백준] 21300번 Bottle Return 풀이 코드 (C/C++/Java 자바/Python 파이썬) (0) | 2021.10.25 |
[백준] 15733번 나는 누구인가 풀이 코드 (C/C++/Java 자바/Python 파이썬) (0) | 2021.10.23 |
[백준] 15962번 새로운 시작 풀이 코드 (C/C++/Java 자바/Python 파이썬) (0) | 2021.10.22 |
[백준] 16394번 홍익대학교 풀이 코드 (C/C++/Java 자바/Python 파이썬) (0) | 2021.10.21 |