solve THIS please...
#java..
using nested if...
rewrite the following..
Attachments:
Answers
Answered by
1
Solution---
If(x>y&& x>z)
{
System.out.println("x is greatest");
}
else if(y>z && y>x)
{
System.out.println("y is greatest");
}
else
{
Systems.out.println("z is the greatest ");
}
anirudhsingh87:
byeeeee expert ji
Similar questions