yytssf


私信TA

用户名:Terrence

访问量:4624

签 名:

慢慢来吧

等  级
排  名 1860
经  验 2597
参赛次数 0
文章发表 6
年  龄 0
在职情况 待业
学  校 北京理工大学
专  业

  自我简介:

解题思路:





注意事项:
每次剩余的瓶子是换的汽水数加上余下空瓶子




参考代码:

#include<stdio.h>


int main() {

int bottle;

int water = 0;

scanf("%d", &bottle);


while (bottle != 0) {

water = 0;

while (bottle >= 3) {

water += bottle / 3;

bottle = bottle / 3 + (bottle % 3);

}

if (bottle == 2)water++;


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

scanf("%d", &bottle);

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »