单选题 难度 3
内层的起点跟着外层走。
当 n = 100 时,下面代码中 c 最终的值是( )。 int c = 0; for (int i = 1; i <= n; i++) for (int j = i; j <= n; j++) c++;