The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 3 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
/************************
* This is a flower box
* Name:
* Program name: MathOP.java
* Date: 23- 05-2016
* Purpose:This is perform addition and subtraction of two number
**************************/
public class MathOP {
private double num1;
private double num2;
Â
MathOP(double n1, double n2) {
this.num1 = n1;
this.num2 = n2;
}
Â
/**
* @return the num1
*/
public double getNum1() {
return num1;
}
Â
/**
* @param num1
* the num1 to set
*/
public void setNum1(double num1) {
this.num1 = num1;
}
Â
/**
* @return the num2
*/
public double getNum2() {
return num2;
}
Â
/**
* @param num2
* the num2 to set
*/
public void setNum2(double num2) {
this.num2 = num2;
}
Â
public double MathAdd() {
return num1 + num2;
}
Â
public double MathSub() {
return num1 - num2;
}
}
Â
i attached the file
Â
Â
Attachments:
-----------