计算力扣银行的钱

题目

class Solution {
public:
    int totalMoney(int n) {
        int week,offset;
        int total=0;
        for(int i=0;i<n;i++){
              week=i/7;
              offset=i%7+1;
              total+=week+offset;
        }
        return total;
    }
};

这里计算偏移量从零开始,可以避免前一个轮回结束数字为0

上一篇:SqlServer存储过程中使用事务,示例模版


下一篇:1538. 卡牌游戏 II