hiya i stuck on this can anyone help please
Result1 = (Val1*Val2)/Val3;
Result2 = (Val1+Val2)-Val3;
write a sperate method to print the result of the above calculation
and then write a main app class to create an operator object set it up with some test data to calculate the values above
this is my coding so far:
public class Logic1 {
int Val1;
int Val2;
int Val3;
int Result1;
int Result2;
// creating val 1,2,3 integers
public void Calculations(int Val1, int Val2, int Val3){
Result1 = (Val1*Val2)/Val3;
Result2 = (Val1+Val2)-Val3;
// Writen a method that calculates the above equations.
}
public void setVal1(int newVal1Value)
{
Val1 = newVal1Value;
}
public int getVal1()
{
return Val1;
}
// Created get and set for val1
public void setVal2(int newVal2Value)
{
Val2 = newVal2Value;
}
public int getVal2()
{
return Val2;
}
// Created get and set for Val2
public void setVal3(int newVal3Value)
{
Val3 = newVal3Value;
}
public int getVal3()
{
return Val3;
}
// Created Get and Set for Val3
}