//CS II Lab
//Name:
// Date:
class MyMath {
private:
int num1;
int num2;
public:
MyMath():
MyMath(int n1, int n2);
int myMathFunction();
void display();
};
MyMath::MyMath(){
num1 = 10;
num2 = 10;
};
MyMath::MyMath(int n1, int n2){
num1=n1;
num2=n2;
}
void MyMath:: setNum1(int n1){
num1=n1;
}
void MyMath:: setNum2(int n2){
num2=n2;
}
int MyMath:: getNum1(){
return Num1;
}
int MyMath:: getNum2(){
return Num2;
}
//myMathFunction()
//display()

WhatsApp us