JAVA学习DAY7
条件运算符、拓展运算符
package operation;
public class demo7 {
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);
//字符号连接符 + , String
System.out.println(a+b);
System.out.println(""+a+b);
System.out.println(a+b+"");
}
}
package operation;
//三元运算符
public class demo8 {
public static void main(String[] args) {
// x ? y : z
//如果x==true 则结果为y,否则结果为z
int score = 80;
String type = score <60 ?"不及格":"及格";
System.out.println(type);
}
}