摘要: 小学数学 class Solution { public: int numWaterBottles(int a, int b) { int rem = a; int cnt = a; while(a/b){ int temp = a/b; cnt += a/b; a %= b; a += temp; 阅读全文
posted @ 2020-07-19 14:02 CrosseaLL 阅读(69) 评论(0) 推荐(0) 编辑