填空题

阅读下面的程序段:
for i=1 to 3
for j=i to 1
for k=j to 3
a=a+1
next k
next j
next i
执行上面的三重循环后,a的值为 【14】

【参考答案】

N