int a=0,b=1,c=2,d=3,e=4;
a=(b++,c++,d++,e++);
cout<<"a= "<<endl;
a没有输出结果。(b++,c++,d++,e++);的意思
int a=0,b=1,c=2,d=3,e=4;
a=(b++,c++,d++,e++);
cout<<"a= "<<endl;
a没有输出结果。(b++,c++,d++,e++);的意思
cout<<"a= "<<endl; 这句 应该改成 cout<<"a="<<a<<endl;
输出结果为4;
或者改成cout<<a<<b<<c<<d<<e<<endl;