长见识了,之前知道与能够用来限制范围,就是没想到用在这题上

class Solution {
public:
    int Sum_Solution(int n) {
      n && (n += Sum_Solution(n - 1));
      return n;
    }
};