-
[브론즈 Ⅴ] 23234번 :: The World Responds / Java백준/브론즈 2022. 4. 29. 20:12
문제
https://www.acmicpc.net/problem/23234
23234번: The World Responds
In many introductory computer programming classes, the first program that students learn to write just prints “Hello, world!” It is used as a first assignment because it is a simple program that produces output. The program dates back to at least 1974,
www.acmicpc.net
코드
public class Main { public static void main(String[] args) { System.out.println("The world says hello!"); } }
썸네일 '백준 > 브론즈' 카테고리의 다른 글
[브론즈 Ⅴ] 24568번 :: Cupcake Party / Java (0) 2022.04.29 [브론즈 Ⅴ] 24262번 :: 알고리즘 수업 - 알고리즘의 수행 시간 1 / Java (0) 2022.04.29 [브론즈 Ⅴ] 22193번 :: Multiply / Java (0) 2022.04.29 [브론즈 Ⅴ] 21300번 :: Bottle Return / Java (0) 2022.04.29 [브론즈 Ⅴ] 20492번 :: 세금 / Java (0) 2022.04.28