Simplify (5 + V3),(5 -
3)
Answers
Answered by
22
//to check the number
class number
{
void method(int a)
{
if(a>0)
System.out.print("POSITIVE "+a);
else if(a<0)
System.out.print("NEGATIVE "+a);
else
System.out.print("NEUTRAL "+a);
}
}
Similar questions