#include "stdafx.h"
#include "iostream"
using namespace std;
//alidoran
int main()
{
int x=5, y=10, z=20;
cout << "x=" << x << endl << "y=" << y << endl << "z=" << z << endl;
z = x + y++;
cout << "x=" << x << endl << "y=" << y << endl << "z=" << z << endl;
system("pause");
return 0;
}
- ۹۶/۱۱/۰۷