Daniel Holle
b774281cbb
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m48s
9 lines
170 B
Java
9 lines
170 B
Java
import java.lang.Boolean;
|
|
import java.lang.String;
|
|
import java.lang.Integer;
|
|
|
|
public class Ternary {
|
|
public main(x) {
|
|
return x > 10 ? "big" : "small";
|
|
}
|
|
} |