You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
198 B

#include<iostream>
using namespace std;
int main()
{
int y=0;
int x=2;
y=5*x++;
cout<<y<<endl;
cout<<x<<endl;
cout<<" "<<endl;
x=2;
y=x--*2+3;
cout<<y<<endl;
cout<<x<<endl;
return 0;
}