注意:此页面搜索的是所有试题
请阅读分析下列程序,然后写出程序运行结果。 main(void)
{
int i;
for(i=1; i<6; i+ +)
{
if(i%2)
{
printf("@");continue;
}
printf("*");
}
printf("\n");
}

参考答案