解题思路:
注意事项:
参考代码:
#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include<bits/stdc++.h> using namespace std; int n,a[1001],ans[1001]; int cl(int n) { int temp=0; int t=n/3,sheng=n%3; sheng+=t; temp=t; while(sheng>=3) { int t1; t1=sheng/3; sheng=sheng%3+t1; temp+=t1; } if(sheng==2) temp+=1; return temp; } int main() { while(cin>>n) { if(n==0) break; int nas=cl(n); cout<<nas<<endl; } return 0; }
0.0分
0 人评分