单选题 以下程序运行结果是______。
#include<stdio.h>
int main()
{
int i, x=1;
for(i=3; i>0; i--)
x=(x+1)*3;
printf("%d/n", x);
return 0;
}
【正确答案】 C
【答案解析】