문제링크
https://www.acmicpc.net/problem/2908
나의코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int a = Integer.parseInt(new StringBuilder(st.nextToken()).reverse().toString());
int b = Integer.parseInt(new StringBuilder(st.nextToken()).reverse().toString());
if(a > b){
System.out.print(a);
}else{
System.out.print(b);
}
}
}
'Baekjoon Online Judge' 카테고리의 다른 글
[BOJ] 백준 2577번: 숫자의 개수 (Java) (0) | 2023.03.25 |
---|---|
[BOJ] 백준 2475번: 검증수 (Java) (0) | 2023.03.24 |
[BOJ] 백준 5622번: 다이얼 (Java) (0) | 2023.03.22 |
[BOJ] 백준 1152번: 단어의 개수 (Java) (0) | 2023.03.21 |
[BOJ] 백준 2675번: 문자열 반복 (Java) (0) | 2023.03.20 |
댓글