if判断

Posted wukangxiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了if判断相关的知识,希望对你有一定的参考价值。

单选择结构if判断

int i=10;
if(i==10)
    System.out.println(i);

双选择结构if判断

int i=10;
if(i>10)
     System.out.println("正确");
else
   System.out.println("错误");

多重选择结构if判断

  //根据成绩的分数来分等级
       Scanner scanner=new Scanner(System.in);
       int chengji=scanner.nextInt();
       if (chengji==100)
           System.out.println("成绩满分");
      else if (chengji<100 &&chengji>=90)
           System.out.println("优秀");
      else if (chengji<90 &&chengji>=80)
           System.out.println("优良");
      else if (chengji<80 &&chengji>=70)
           System.out.println("良好");
      else if (chengji<70 &&chengji>=60)
           System.out.println("及格");
      else if (chengji<60 &&chengji>=0)
           System.out.println("不及格");
      else
           System.out.println("成绩不合法");
     
 

 

以上是关于if判断的主要内容,如果未能解决你的问题,请参考以下文章

if判断语句

JAVA if判断新手求解。

shell编程之 if 判断语句

JS里if判断如何写

Shell脚本的逻辑判断if文件目录属性判断if的特殊用法Shell中的case判断

Cmake中的条件判断if/elseif/else