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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#include <iostream> #include <cstdio> #define ll long long using namespace std; int check(ll num,ll limit) { ll a=num,b=limit; int cnt=0; while(a<=limit) { if(a%2) { a=(a*3+1); cnt+=1; if(a>limit) return cnt-1; } else { a/=2; cnt+=1; if(a==1) return cnt; } } return cnt; } int main() { ll num,limit; int c; int kase=1; while(cin>>num) { cin>>limit; if(num==-1 && limit==-1) break; c = check(num,limit); cout<<"Case "<<kase++<<": A = "<<num<<", limit = "<<limit<<", number of terms = "<<c+1<<"\n"; } return 0; } |