#题外话(第27篇题解)(本题为普及-难度)
#先看题目
题目链接https://www.luogu.com.cn/problem/P8627
#思路(用while循环,循环到山穷水尽为止,用一个计数的计量)
#代码
#include <bits/stdc++.h>//iostream也可以
using namespace std;
int main()
{int a,b=0,cnt=0;//a为没喝的,b为瓶盖,cnt为计数器cin>>a;while(!(a==0&&b<3)){//当还有的喝或者有的换while(a!=0){a--;b++;cnt++;}//喝while(b>=3){a++;b-=3;}//换}cout<<cnt;//输出return 0;
}