执行下列语句:
#include<iostream>
using namespace std;
int main()
int a=3;
if(a=5)
cout<<a++<<endl;
else
cout<<a<<endl;
return 0;
程序的输出是_
3
4
5
6
发表评论