不是VIP会员,不能显示答案

题目解答

题目:
有以下的程序段:
k:=0;
for i:=1 to n-1 do
for j:=n downto i+1 do
if a[j]>a[j-1] then inc(k);
writeln(k);
当n=10时,运行该程段,输出k值的最大值是( )
  • A.10
  • B.45
  • C.55
  • D.100
考点:
分析:
解答:
评论:
老师: