백준 자바 더하기사이클1 [백준/JAVA] 1110번 더하기 사이클 import java.util.Scanner; public class Main {public static void main(String args[]) {Scanner in = new Scanner(System.in);int N = in.nextInt();int first, second, temp1,result;int count = 0;first = N / 10;second = N % 10;while (true) {count++;temp1 = first + second;result = second * 10 + temp1 % 10;first = second;second = temp1 % 10;if(result == N)break;}System.out.println(count++);}} 더 많은 백준 코드가 .. 2020. 7. 21. 이전 1 다음