解题思路:两个瓶子就可以换一瓶新的,So........
注意事项:n =0 的时候表示输入结束(做的时候没看到,错了两次)
参考代码:
#include<stdio.h> int main() { int n, count; while (scanf("%d", &n) == 1 && n != 0) { if (n % 2 == 0) count = n / 2; else count = (n - 1) / 2; printf("%d\n", count); } return 0; }
当然有点投机取巧了,但我觉得也是一种思路吧!!!!
0.0分
2 人评分