//Author: Amadeus Bach Vivaldi together with Low Chee Tat //Date: 29 May 2002 //Purpose: Help frens: for chan juan //This program performs simple calculations //The alignment in this program maybe is a bit mess up, u must adjust by urself,this is simple job //Good luck #include #include class Calculator{ private: double x,y,z; int choice; public: int Menu(); void Addition(); void Substraction(); void Multiplication(); void Division(); void Modulus(); }; void Calculator::Addition() { system("cls"); cout<<"\n\n Please enter two numbers for addition: "<>x>>y; z=x+y; cout<<"The addition of "<>x>>y; z=y-x; cout<<"The substraction of "<>x>>y; z=x*y; cout<<"The multiplication of "<>x>>y; z=x/y; cout<<"The division of "<>x>>y; cout<<"The modulus of "<>choice; return choice; } void main() { int choice; Calculator calc; system("cls"); cout<<"\n\n\n\n\n\n Welcome to Chan Juan's calculator of 2 numbers! \n"; cout<<"\n Subject DACS 2134 DSPT Assignment 1 \n"<