填空题

下列程序的输出结果是______。
main()
int i;
for(i=1;i+1;i++)
if(i>4)
printf("%d\n",i);
break;
printf("%d\n",i++);

【参考答案】

1
3
5