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
'알고리즘풀이 > 백준-자바' 카테고리의 다른 글
[백준/JAVA] 5543번 상근날드 (0) | 2020.07.21 |
---|---|
[백준/JAVA] 10039번 평균점수 (0) | 2020.07.21 |
[백준/JAVA] 10871번 X보다 작은 수 (0) | 2020.07.21 |
[백준/JAVA] 8393번 합 (0) | 2020.07.21 |
[백준/JAVA] 2439번 별찍기 (0) | 2020.07.21 |
댓글