250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 알고리즘개념
- 재귀함수
- 23288
- Bfs와DFS
- 순열
- 백준
- 코테준비
- 백준2251
- 자바 코테
- 전화번호속의암호
- java
- 백준15652
- 알고리즘
- 정보처리기사
- N과M
- 파티션 크기 조정
- 삼성역테
- 주사위굴리기2
- 중복순열
- 완탐
- D드라이브생성
- 중복조합
- 정올 1620
- 에라토스테네스의채
- 완전탐색
- 코테
- BFS
- 자바
- 백준13458
- 볼륨 만들기
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 1110번 더하기 사이클 본문
728x90
* 단계별로 풀어보기: while 문
문제
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int cycle = 0;
int tmp = n, sum = 0;
while(true) {
if(n<0 || n>99) break;
sum = (tmp/10) + (tmp%10);
tmp = (tmp%10)*10 + (sum%10);
cycle++;
if(n == tmp) break;
}
System.out.println(cycle);
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 4673번 셀프넘버 (0) | 2021.01.19 |
---|---|
[문제] 백준 8958번 OX 퀴즈 (0) | 2021.01.19 |
[문제] 백준 4344번 평균은 넘겠지 (0) | 2021.01.19 |
[문제] 코드업 1930번 supersum- 메모이제이션으로 풀기 (0) | 2021.01.19 |
[알고리즘]백준 1339번 단어 수학 (0) | 2020.06.28 |
Comments