填空题
写出程序的运行结果。
#include <stdio.h>
main()
{ inta,b;
scanf(”%d%d",&a,&b);
if(++a>=b) printf(”Yes”);
printf("a+b=%d\n",a+b);
}
如果输入:a=6,b=8,则输出结果是()。
【参考答案】
a+b=15
点击查看答案
