题解 | #汽水瓶#
汽水瓶
https://www.nowcoder.com/practice/fe298c55694f4ed39e256170ff2c205f
#include <iostream> using namespace std; int main() { int a,b; while (cin >> a) { // 注意 while 处理多个 case b=0; if(a!=0){ while((a+1)>=3){ a=a+1-3; b++; } cout<<b<<endl; }else{ return 0; } } } // 64 位输出请用 printf("%lld")