问题 填空题

以下程序运行后输出的结果是______。
#include <stdio.h>
main()
int a=1,b=7;
do
b=b/2;a+=b;
while(b>1);
printf("%d\n",a),

答案

参考答案:E

问答题 简答题
判断题