#42095: cpp解


dvbdarcyvolleyball@gmail.com (no love)

學校 : 新北市私立南山高級中學
編號 : 266888
來源 : [36.229.113.115]
最後登入時間 :
2024-11-10 16:32:25
c002. 10696 - f91 -- UVa10696 | From: [123.252.121.18] | 發表日期 : 2024-09-26 19:49

 照題目打,乖乖被騙一下

#include <iostream> //AC c575 二分搜 c002 b967 a867
#define fast_as_a_fuckboy ios_base::sync_with_stdio(0);cin.tie(0);
using namespace std;

int f91(int x){
  if(x <= 100){
    return f91(f91(x+11));
  }
  else{
    return x - 10;
  }
}

int main(){
  fast_as_a_fuckboy; 
  int n;
  while(cin >> n && n != 0){
    cout << "f91(" << n << ") = " << f91(n) << "\n";
  }
}

 
ZeroJudge Forum