#include "stdafx.h"
#include "iostream"
using namespace std;
int main()
{
int x, y;
cout << "please enten number1"<<endl;
cin >> x;
cout << endl << "please enter number2" << endl;
cin >> y;
cout << endl;
cout << "plus is:" << x + y << endl;
cout << "subtract is :" << x - y << endl;
cout << "multiply is :" << x*y << endl;
cout << "quotient is :" << x / y << endl;
cout << "residue is :" << x%y << endl;
system("pause");
return 0;
}
- ۹۶/۱۱/۰۳