2013年11月5日 星期二

[UVA] 10696 - f91

/*20131105 hanting*/
#include <iostream>
using namespace std;
int f91(int N)
{
    if(N>=101)
    {
        return N-10;
    }
    else
    {
         return f91( f91( N+11) );
    }
}
int main()
{
    int N;
    while(cin>>N)
    {
    if(N==0) return 0;
    cout<<"f91("<<N<<") = "<<f91(N)<<endl;
    }
    return 0;
}

沒有留言:

張貼留言