int n=10,cout=0;
for(int i=1;i<=n;i++)
for(int j=1;j<=i;j++)
for(int k=1;k<=j;k++)
cout ++;
循环了220次··复杂度是T(1)