单项选择题以下程序运行后的输出结果是 #include<stdio.h> main() { int a=1, b=2; for(; a<8; a++){b+=a; a+=2;} printf( %d,%d n ,a,b); }
单项选择题下列关于C语言的叙述中,正确的是