question mark if statement java code example
Example 1: if statement using question mark java
boolean statement ? "true result" : "false result";
Example 2: java question mark operator
//ternary operator
// takes in a conditional statement
// a is returned when the condition is true and vice versa
return (a == b) ? a : b;
int n = (a < b) ? a + 10: b;