if(a>b)
c=a;
else
c=b;
It can be written as:
1. c= (b>a)?a:b;
2. c= (a!=b)?a:b;
3. c= (a>b)?b:a;
4. None
Answers
Answered by
3
Answer:
4. None
Explanation:
Te the correct answer will be this c= (a>b)?a:b;
It is not in the option so the answer is none.
Similar questions
Math,
2 months ago
English,
2 months ago
English,
4 months ago
World Languages,
4 months ago
Math,
10 months ago