1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import java.util.Scanner;
public class No07 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int valueA = (a%10)*100 + ((a/10)%10)*10 + a/100;
int valueB = (b%10)*100 + ((b/10)%10)*10 + b/100;
int max = (valueA > valueB) ? valueA : valueB;
System.out.println(max);
} //main
} //class
|
cs |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class No07_2 {
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());
System.out.print(A > B ? A : B);
} //main
} //class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2941) (0) | 2021.06.06 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 5622) (0) | 2021.06.05 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1152) (0) | 2021.06.03 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1157) (0) | 2021.06.02 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2675) (0) | 2021.06.01 |