执行以下程序段后, 输出的结果为 ( )
int a=4,b=5,t=0;
if(a>b) t=a;a=b;b=t;
cout<<”a=”<<a<<”,b=”<<b<<endl;
a=5,b=4
a=4,b=5
a=5,b=0
语法错误