Computer Science, asked by shalinipoddaragarwal, 6 months ago

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 valeriy69
1

output:

  1. 5
  2. 9

\small\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by Yamini2110
1

Answer:

output is:

a=5

b=9

Explanation:

Similar questions