注意:此页面搜索的是所有试题
以下程序的输出结果是____
#include <stdio.h>
int main()
{
int s,i;
for(s=0,i=1;i<3;i++,s+=i);
printf(..%d\n..,s);
return 0;
}

参考答案