Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[백준] 2908번 상수 본문
728x90
문자열을 뒤집고자 할 때 팁 : java 언어 이용 시. Stringbuffer 사용하여 reverse().tostring() 사용하기.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String [] input = br.readLine().split(" ");
int n1 = Integer.parseInt(new StringBuffer(input[0]).reverse().toString());
int n2 = Integer.parseInt(new StringBuffer(input[1]).reverse().toString());
if(n1>n2) {
System.out.println(n1);
}else {
System.out.println(n2);
}
}
}
'[IT] > 백준' 카테고리의 다른 글
[백준] 2941번 크로아티아 알파벳 (0) | 2019.05.25 |
---|---|
[백준] 5622번 다이얼 (0) | 2019.05.25 |
[백준] N과 M (1) (0) | 2019.04.01 |
[백준] N과 M (2) (0) | 2019.04.01 |
[백준] 암호 만들기 (0) | 2019.04.01 |
Comments