Is there any framework or sample java code to evaluate an arithmatic / logical / bitwise expression , which will provide the value for input parameters , to make the condition pass.
For example , In the below sample arithmatic condition ,
if the values a=7 and b=6 are passed , the condition will get passed and we'll get "Condition is passed!!!" printed in console.
if( (a>b) && (a<10) && (b>5))
{
System.out.println("Condition is passed!!!");
}
Is there any framework which will give me the value of a and b , taking the expression as input.