不用循环,以人的正常视角来看

  1. 9 = 10-1
  2. 9+99 = 110-2
  3. 9+99+999 = 1110-3 ..... 你已经发现了,可以用n个1的数字*10减去n即可求得和的结果
#include <iostream>
#include <math.h>
using namespace std;

int main() {

    // write your code here......
    long int i = atol(string(10,'1').c_str());
    cout<<i*10-10;

    return 0;
}

结束,轻松!