单选题 以下程序的输出结果是 ____
#include<iostream.h>
main()
{
int m=5;
if(m++>5)
cout<<m;
else cout<<m--;
}
【正确答案】 B
【答案解析】