Java教程

运算符

本文主要是介绍运算符,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
public class Demo01 {
    public static void main(String[] args) {
        //二元运算符
        int a = 10;
        int b = 20;
        int c = 30;
        int d = 40;
        System.out.println(a+b);
        System.out.println(a-b);
        System.out.println(a*b);
        System.out.println(a/(double)b);//出现小数时把数据类型强转
    }
}

public class Demo02 {
    public static void main(String[] args) {
        long a = 123123123123L;
        int b = 123;
        short c = 10;
        byte d = 8;

        System.out.println(a +b +c +d);
        System.out.println(b +c +d);
        System.out.println(c +d);
    }
}

public class Demo03 {
    public static void main(String[] args) {
        //关系运算符返回的结果:正确,错误 布尔值\
        //if
        int a = 10;
        int b = 20;
        int c = 21;

        System.out.println(c%a);// c/a  21/10 = 2 ....1

        System.out.println(a>b);
        System.out.println(a<b);
        System.out.println(a==b);
        System.out.println(a!=b);
    }
}


这篇关于运算符的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!