码迷,mamicode.com
首页 > 编程语言 > 详细

学习java100天【02】

时间:2018-12-14 01:06:33      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:main   next   style   color   java10   default   bre   operator   个数   

/**
 * 位运算
 *  &:位与
 *  |:位或
 *  ^:异或
 *  ~:非
 */
public class OperatotDemo {
    public static void main(String[] args) {
        // 0000 0011 & 0000 0100 = 0
        System.out.println(3&4); // 0
        System.out.println(3|4); // 7
        System.out.println(3^4); // 7
        System.out.println(~3);  // -4
    }

}

 

 

/**
 * 从键盘接受输入
 *
 */
public class OperatorInput {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.println("输入一个数字:");
        int a = scanner.nextInt();

        switch (a) {
            case 1:
                System.out.println("周一");
                break;
            case 2:
                System.out.println("周二");
                break;
            default:
                System.out.println("其他");
                break;
        }
    }
}

 

/**
* 位运算
* &:位与
* |:位或
* ^:异或
* ~:非
*/
public class OperatotDemo {
public static void main(String[] args) {
// 0000 0011 & 0000 0100 = 0
System.out.println(3&4); // 0
System.out.println(3|4); // 7
System.out.println(3^4); // 7
System.out.println(~3); // -4
}

}

学习java100天【02】

标签:main   next   style   color   java10   default   bre   operator   个数   

原文地址:https://www.cnblogs.com/ohmydenzi/p/10117228.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!