Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のプログラムの印刷出力が7として出力される理由を誰かが説明できますか
パブリッククラステスト{
public static void main(String []args){ int i =1; int j =2; int k= 5; System.out.println(i|j|k); }
}
OR演算がJava intでどのように発生するかを知りたい.