BOJ 문제풀이

백준 1110번 c++ 풀이

koreasunoo 2021. 7. 17. 00:33
SMALL

코드:

    #include <iostream>
    using namespace:: std;
    int main(){
        int a;
        int count = 0;
        cin>>a;
        if(a==0){
            cout<<1;
        }
        else if(a/10 == 0){
            int first = a;
            a = a* 11;
            count ++;
            while(first!=a){
                count++;
                a = (a%10)*10 + (a%10+a/10)%10;
            }
            cout<<count;
        }
        else{
            int first = a;
            a = (a%10)*10 + (a%10+a/10)%10;
            count ++;
            while(first!=a){
                count++;
                a = (a%10)*10 + (a%10+a/10)%10;
            }
            cout<<count;
            
        }
        return 0;
    }
LIST

'BOJ 문제풀이' 카테고리의 다른 글

백준 2839번 c++ 풀이  (0) 2021.07.17
백준 2562번 c++ 풀이  (0) 2021.07.17
백준 10871번 c++ 풀이  (0) 2021.07.17
백준 C++ 2884번 풀이  (0) 2021.07.16
백준 11729번 파이썬 풀이  (0) 2021.07.15