解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h>
using namespace std;
int tt(int w){
int m,n,x,y,sum=0;
m=w/3;
n=w%3;
while(m!=0){
sum+=m;
x=(m+n)/3;
y=(m+n)%3;
m=x;
n=y;
}
if(n==2)
sum++;
return sum;
}
int n,sum;
int main()
{
for(;;)
{
cin>>n;
if(n==0)
break;
else
cout<<tt(n)<<endl;
}
return 0;
}
0.0分
0 人评分