各种不同的运算符

简介: 各种不同的运算符
public class qq {
        public static void main(String[] args){
           //Ctrl+D:复制当前行到下一行
         int a=10;
         int b=20;
         int c=25;
         int d=25;
         System.out.println(a+b);
         System.out.println(a-b);
         System.out.println(a*b);
         System.out.println(a/(double)b);
        }
    }


public class qq {
        public static void main(String[] args){
           //Ctrl+D:复制当前行到下一行
        boolean a=true;
        boolean b=false;
        System.out.println("a&&b:"+(a&&b));
        System.out.println("a||b:"+(a||b));
        System.out.println("!(a&&b):"+!(a&&b));
        }
    }


public class qq {
        public static void main(String[] args){
      /*A=0011 1100
      B=0000 1101
      A&B=0000 1100
      A|B=0011 1101
      A^B=0011 0001
      ~B=1111 0010
       */
            //<<   *2
//>>/2
            System.out.println(2<<3);
            System.out.println(2>>1);
            //字符串连接符+放在字符串后面自动连接
            int a=10;
            int b=20;
            System.out.println(""+a+b);
            System.out.println(a+b+"");
        }
    }


public class qq {
        public static void main(String[] args){
      /*A=0011 1100
      B=0000 1101
      A&B=0000 1100
      A|B=0011 1101
      A^B=0011 0001
      ~B=1111 0010
       */
            //<<   *2
//>>/2
            System.out.println(2<<3);
            System.out.println(2>>1);
            //字符串连接符+放在字符串后面自动连接
            int a=10;
            int b=20;
            System.out.println(""+a+b);
            System.out.println(a+b+"");
            //x?y:z
            int score=60;
            String  type=score<60 ?"不及格":"及格";
            System.out.println(type);
            System.out.println(score<60?"不及格":"及格");
        }
    }
相关文章
|
7月前
1-6 运算符
1-6 运算符
45 0
|
7月前
|
C++
c++运算符
c++运算符
57 2
|
7月前
|
C语言
c运算符
c运算符
35 0
|
7月前
|
程序员 C++
C++中的运算符:深入理解与应用
C++中的运算符:深入理解与应用
108 0
|
7月前
|
存储 弹性计算 运维
使用OR运算符
【4月更文挑战第29天】
40 0
|
7月前
|
存储 弹性计算 运维
使用AND运算符
【4月更文挑战第29天】
47 0
|
7月前
|
Java
运算符的文章
运算符的文章
39 0
|
7月前
|
C++
c++位运运算符
c++位运运算符
46 0
|
7月前
|
C# 数据安全/隐私保护
C#运算符
C#运算符
38 0
|
7月前
|
C语言
各种运算符的介绍,超详解
各种运算符的介绍,超详解
110 0