Computer Science, asked by madhusudan3577, 1 year ago

int n=10;int res=(n--+10>--n×5)?++n:n++ System.Out.println(res+","+n); what is the output​

Answers

Answered by shivaramdhanush
0

res=(10+10>8*5)?9;9;

output:

/**

9,10

*/

Similar questions