喝汽水问题(C语言)

个人博客主页:https://blog.csdn.net/2301_79293429?type=blog
专栏:https://blog.csdn.net/2301_79293429/category_12545690.html

题目:

喝汽水,1瓶汽水1元,2个空瓶可以换一瓶汽水,给20元,可以喝多少汽水(编程实现)。

//喝汽水

int main()

{

	int sum = 0;//瓶子的数量

	sum = 20;

	int count = 20;//汽水的数量

	while (1)

	{

		if(sum>=2)

		{

			sum -= 2;

			sum += 1;

			count++;

		}

		if (sum <= 1)

			break;

	}

	printf("%d\n", count);

	return 0;

}

最后祝大家题题AC,天天只盼着做个WA梦~

你可能感兴趣的:(刷题,c语言,算法,leetcode)