单项选择题

程序运行后的输出结果是( ) #include main() {int a=1,b=7; do { b=b/2; a+=b; }while(b>1); printf(“%d”,a);} A.
5 B.
8 C.
7 D.
11