填空题
执行以下程序的输出结果是 【18】 。 #include <stdio.h> main() [ int i, n[4]={1}; for(i= 1 ;i<=3 ;i++) { n[i]=n[i-1]*2+1; printf("%d",n[i]); }