![]() |
#2
书生牛犊2016-09-23 17:41
|
#include<iostream>
using namespace std;
int main(){
int x=5;
int y=2+(x+=x++,x+8,++x);
cout<<y<<endl;
return 0;
}