You can design a structure like the following in this project int x = 10; int y = 20; int z = (x > y) ? x : y;
You can design a structure like the following in this project
int x = 10;
int y = 20;
int z = (x > y) ? x : y;