Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

Everything has an expiration date

BAEKJOON - 10926 : ??! 본문

BAEKJOON - challenge/입출력과 사칙연산

BAEKJOON - 10926 : ??!

Jelly-fish 2023. 9. 17. 09:59

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

public class Main
{
	public static void main(String[] args) throws IOException
	{
		// 1. 변수 선언
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String inputStr;
		
		// 2. 사용자로부터 아이디를 입력 받는다.
		inputStr = br.readLine();
		
		// 3. ??! 를 뒤에 추가해서 출력한다.
		System.out.println(inputStr + "??!");
		//--==>> joonas??!
		
	}

}

🧟‍♀️🧟‍♂️