赞题库-背景图
单项选择题

执行下面的程序后,a的值为( )。
main()
int a,b;
for(a=1,b=1;a<=10;a++)
if(b%3==1)
b+=3;
continue;
b=5;

A.7
B.8
C.9
D.10