UVA 550

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    int a,b,c;
    while(cin>>a>>b>>c)
    {
        int yushu=0;
        int i,temp=b,temp1;
        for(i=1;;i++)
        {
            if((b*c+yushu)!=temp)
            {
                temp1=yushu;
                yushu=(b*c+yushu)/a;
                b=(b*c+temp1)%a;
            }
            else
            {
                cout<<i<<endl;
                break;
            }    
        }
    }
    return 0;
}

 

posted @ 2012-04-28 12:14  open your eyes  阅读(152)  评论(0编辑  收藏  举报