HOMELv024 次のコードの出力は? String s1 = “A”; String s2 = “A”; System.out.println(s1 == s2); 2026年1月24日 実行結果はtrue。 次のコードの出力は? int a = 10; int b = a; b = 20; System.out.println(a); 次のコードの出力は? String s1 = new String(“A”); String s2 = new String(“A”); System.out.println(s1 == s2);