其实这道题直接用高斯求和公式就可以轻松解决
class Solution { public: int getSum(long long n) {//范围改为long long不然会出界 return (1+n) * n / 2;//高斯求和公式 : (首项+尾项) * 项数 / 2 } };