rewrite the following conditions without using logical operators:
if(a>b ll a>c)
System.out.println(a);
Answers
Answered by
0
Condition without using logical operators:
if (a > b) System.out.println(a);
else if (a > c) System.out.println(a);
Hope this helps!
Similar questions