单选题 下面程序的运行结果是______。
#include "stdio.h"
main()
{int i;
for(i=1;i<=5;i++)
{if(i%2)printf(“$”);
else printf("@");}}
【正确答案】 A
【答案解析】