Computer Science, asked by devanandas187, 5 months ago

convert the following to if else statement int c=a>b?1:0​

Answers

Answered by ayan3643
1

Answer:

int c,

{

if (a>b);

{

System.out.println(1);

else

System.out.println (0);

}

}

Similar questions