其中分为
1.
if(条件语句){
}else(注:这里不用写条件语句,只要前面不满足时,便执行else之后的语句){
}
2.
if(条件语句){
}else if(条件语句){
}else{
}
3.
if(条件语句){
}if(条件语句){
}
此时如果两个if内的条件均成立,那么两个if后的语句均会执行
样例:
package Hello.lrx.nb;
public class If {
public static void main(String[] args) {
System.out.println("Hello!");
double score = 55;
if(score>=60){
System.out.println("恭喜你,及格了!!!");
}
else{
System.out.println("恭喜你,挂科了!!!");
}
if(score<60){
System.out.println("E");
}
else if(score>=60&&score>70){
System.out.println("D");
}
else if(score>70&&score<80){
System.out.println("C");
}
else if(score>=80&&score<90){
System.out.println("B");
}
else{
System.out.println("A");
}
}
}