填空题

下面程序的运行结果是______。
##include<stdio.h>
main()
int a,s,n,m;
a=2;s=0;n=1;m=1;
while(m<=4)n=n*a;s=s+n;++m;
printf("s=%d",s);

【参考答案】

s=30