要把自己计算的真实情况用代码表示出来,要严谨细致。
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int res = n; while(n>=3){ res+=n/3; n = n/3+n%3; } cout<<res<<endl; }