Computer Science, asked by anunaina1020, 4 months ago

Give the output of following code:- [2]

int a=20,b=15;

if(a>10)

{

a++;

b++;

}

System.out.println(a+” ”+b);​

Answers

Answered by rajatsingh01
1

Answer:

20,15

Explanation:

System.out.println(a+d) will out put the arithmetic calculation

Similar questions