SyntaxFix
Write A Post
Hire A Developer
Questions
If your numbers are a, b and c then:
int a = 1; int b = 2; int c = 3; int d = a > b ? a : b; return c > d ? c : d;
This could turn into one of those "how many different ways can we do this" type questions!