int a = 50, b=30;
int total = ((a>10) || (b<10)? 85:45);
System.out.println(total);
Answers
Answered by
1
Answer:
The answer of the following code will be 85
Similar questions