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