rewrite the following using ternary operator
if (no>Max)
m=no;
else
m=Max;
Answers
Answered by
0
Sorry, I don't know.....
Answered by
1
Converted:
m = (no > Max) ? no : Max;
Similar questions