فایل cpp
فایل متنی
#include "stdafx.h"
#include "iostream"
using namespace std;
//alidoran
int main()
{
int total=100, n=20;
cout << "n=" << n << "\t" << "total=" << total << endl;
total = --n + total;
cout << "n=" << n << "\t" << "total=" << total<<endl;
system("pause");
return 0;
}