336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
백준알고리즘
https://www.acmicpc.net/problem/2908
import java.util.Scanner; public class Main { public static void main(String args[]) throws Exception { Scanner scan = new Scanner(System.in); String[] memoArray = new String[] { "", "" }; for (int i=0; i<2; i++) { int input = scan.nextInt(); while (input > 0) { memoArray[i] += input % 10; input = input / 10; } } if (Integer.parseInt(memoArray[0]) > Integer.parseInt(memoArray[1])) System.out.println(memoArray[0]); else System.out.println(memoArray[1]); } }
'알고리즘 및 자료구조 > 문제' 카테고리의 다른 글
백준알고리즘 1929번 소수 구하기 (0) | 2018.05.14 |
---|---|
백준알고리즘 1764번 듣보잡 (0) | 2018.05.11 |
백준알고리즘 1149번 RGB거리 (0) | 2018.05.11 |
백준알고리즘 7571 점 모으기 (0) | 2018.05.10 |
백준알고리즘 10844번 쉬운 계단 수 (0) | 2018.05.10 |