브론즈 5까지는 간단한것 같다.


문제 10926

 

그냥 text 입력한 것에 ??! 가 붙으면 되는 것임 (초간단)

 

 

package codingTest;

import java.util.Scanner;

public class codingTest_10926 {
	
	
	public static void main (String[] args) {
		
		Scanner in = new Scanner(System.in);
		
		String a = in.nextLine();
		
		System.out.println(a+"??!");
		
		
		
	}
}

 

여기서 중요한 것

nextInt()

nextDouble()

nextfloat() 

.

 

은 숫자(int는 정수, Double 소숫점까지, float도 거의 마찬가지)

 

nextLine() = 문자

 


 

To be continue..

복사했습니다!