HOMELv024 次のコードの出力は? int x = 5; System.out.println(x > 3 && x < 10); 2026年1月24日 実行結果はtrue。 次のコードの出力は? String s1 = new String(“A”); String s2 = new String(“A”); System.out.println(s1 == s2); 次のコードの出力は? int x = 5; System.out.println(x > 10 || x < 3);