본문 바로가기
알고리즘풀이/백준-자바

[백준/JAVA] 1110번 더하기 사이클

by 이얏호이야호 2020. 7. 21.

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++);

}

}


더 많은 백준 코드가 보고 싶다면 ?  https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80



댓글