a+=b,三元运算

public class Demo07 {
    public static void main(String[] args) {
        int a=10;
        int b=20;

        a+=b;//a=a+b
        a-=b;//a=a-b
        System.out.println(a);

        //字符串连接符 +, 有字符串计算就按字符串连接
        System.out.println(a+b);
        System.out.println(""+a+b);//1020
        System.out.println(a+b+"");//30 先计算
    }
}
public class Demo08 {
    public static void main(String[] args) {
        //x ? y:z
        //如果x==true,则结果为y。否则为z
        int score = 80;
        int score2=50;
        String type=score<60?"不及格":"及格";//必须掌握
        System.out.println(type);//及格
        String type2=score2<60?"不及格":"及格";
        System.out.println(type2);//不及格
    }
}
posted @ 2021-03-05 22:39  做一个好人  阅读(162)  评论(0)    收藏  举报