php if判断 php中if…elseif…else判断条件


php if判断 php中if…elseif…else判断条件

文章插图
我们可以选择简单的语句判断,也可以对多个条件进行同时的筛选 。在php中除了switch可以判断两个以上的条件外,if…elseif…else语句也同样可以实现 。认为switch语句难度大的,不妨来学习一些这个语句 。下面我们就php中if…elseif…else的概念、语法带来讲解,最后分享成绩的实例判断 。
1.概念
if…elseif…else语句根据两个以上的条件执行不同的代码 。
2.语法
if (条件) {条件为 true 时执行的代码;} elseif (condition) {条件为 true 时执行的代码;} else {条件为 false 时执行的代码;}3.实例
判断分数对应的等级 。
public class Classify{public static void main(String[] args) {int score=95;if(score>=90&&score<=100) {System.out.println("A级");}else if(score>=80&&score<=89) {System.out.println("B级");}else if(score>=70&&score<=79) {System.out.println("C级");}else if(score>=60&&score<=69) {System.out.println("D级");}else if(score>=0&&score<=59) {System.out.println("E级");}else {System.out.println("不合法");}}}以上就是php中if…elseif…else判断条件的方法,相信大家对于这种if类型的条件语句,使用起来还是比较顺手的 。学会后可以多使用,加强对语句的实际运用 。


    以上关于本文的内容,仅作参考!温馨提示:如遇健康、疾病相关的问题,请您及时就医或请专业人士给予相关指导!

    「四川龙网」www.sichuanlong.com小编还为您精选了以下内容,希望对您有所帮助: