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