学习java100天02
Posted ohmydenzi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习java100天02相关的知识,希望对你有一定的参考价值。
/** * 位运算 * &:位与 * |:位或 * ^:异或 * ~:非 */ 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的主要内容,如果未能解决你的问题,请参考以下文章