问题 填空题 以下程序运行后的输出结果是 【10】 。 #include main() { char a; for(a=0;a<15;a+=5) { putchar(a+’A’); }printf("\n"); } 答案 参考答案:AFK解析:【解析】比较简单的字符输出的循环语句