[主观题]

阅读下面语句,则执行后的输出结果为 (8)

#include "stdio.h"

main()

{char a,b;

for(a=′0′,b=′9′;a <b;a++,b--)

printf( "%c%c",a,b);

printf("\n");}

参考答案与解析: