10565 . 判断题 Puls

下列C++代码段执⾏后将输出 55 。

int cnt = 0;
for (i = 0; i < 10; i++)
    for (j = i; j < 10; j++)
        cnt += 1;
cout << cnt;