Hi guys,
according to below 3 Equations
x+y+z=100; x+y-z=50; x-y-z=10;
how to get the value of x,y,z with java?
=============================================
String equation1="x+y+z=100;";
String equation2="x+y-z=50;";
String equation3="x-y-z=10;";
int[] SolveEquations(equation1,equation2,equation3){
// to do
//how to do ?
}
=================================================
or do you hava other solutions or other common frameworks ? thanks .