填空题
有以下程序 #include<stdio.h> main() {int i,n[]={0,0,0,0,0}; for(i=l;i<=4;i++) {n[i]=n[i-1]*3+1;printf("%d",n[i]);} } 程序运行后的输出结果是 (9) .