class
unknown
java
3 years ago
257 B
5
Indexable
public class Ternary { public static void main(String[] args) { Integer x = 1987; Integer y = 1987; System.out.println(x == y ? "A" : "B"); x = 10; y = 10; System.out.println(x == y ? "A" : "B"); } }
Editor is loading...