📜  int x = 3 & 5 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:46.442000             🧑  作者: Mango

代码示例1
public class test {
    public static void main(String args[]) {
        int x,y;
        x = 3 & 5;
        y = 3 | 5;
        System.out.println(x + " " + y);
    }
}