한 걸음 두 걸음
baekjoon 2864 ] 5와 6의 차이 본문
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
String A = String.valueOf(a);
String B = String.valueOf(b);
A = A.replace("5", "6");
B = B.replace("5", "6");
//System.out.println("1 :"+A +" "+B);
int maxSum = Integer.parseInt(A) + Integer.parseInt(B);
int minSum;
A = A.replace("6", "5");
B = B.replace("6", "5");
//System.out.println("2 :"+A +" "+B);
minSum = Integer.parseInt(A) + Integer.parseInt(B);
System.out.println(minSum +" "+maxSum);
}
}
반응형
'CSE > baekjoon & swexpert' 카테고리의 다른 글
baekjoon 1302 베스트셀러 ] map / key사전순정렬(Treemap자체) (0) | 2019.03.27 |
---|---|
baekjoon 7785 회사에 있는 사람 ] 자료구조 Map (Treemap / 사전 역순 정렬 Collections.reverseOrder()) (0) | 2019.03.27 |
baekjoon 1475 방번호 ] 문자열처리 / 수학(Math.log/ Math.pow) (0) | 2019.03.15 |
baekjoon 1316 그룹 단어 체커 ] 문자열처리 (0) | 2019.03.15 |
baekjoon 5598 카이사르암호 ] 문자열 & 정수론 (0) | 2019.03.10 |