015. Solve the values of a and b in the
following code
int a=3, b=7
if(a<=b)
{
a=5;
b=9;
}
System.out.println("a="+a);
System.out.println("b="+b);
Answers
Answered by
1
output:
- 5
- 9
Answered by
1
Answer:
output is:
a=5
b=9
Explanation:
Similar questions