二.if-else选择结构
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二.if-else选择结构相关的知识,希望对你有一定的参考价值。
1.if(条件){ 代码块 //条件成立后要执行的代码,可以是一条语句,也可以是一组语句 } #常用的逻辑运算符:&&(与,并且) 条件1&&条件2 ||(或,或者) 条件1||条件2 !(非) !条件 eg:public class Getprize{ int score1=100; int score2=72; if((score1>98&&score>80)||(score1==100&&score2>70)){ System.out.println("老师说:不错,奖励一个MP4!"); } } 2.if(条件){ //代码块1 }else{ //代码块2 } eg:public class show{ int score=89; if(score>98){ System.out.println("老师说:不错,奖励一个MP4!"); }else{ System.out.println("老师说:抱歉!没有奖励!"); } } #产生随机数(0-9任意整数): int random=(int)(Math.random()*10); 3.if(条件){ //代码块1 }else if{ //代码块2-#else if最多有一个或没有,else块必须放在else if块之后. } else{ //代码块3 } 4.嵌套if选择结构: if(条件1){ if(条件2){ // 代码块1 }else{ //代码块2 } }else{ //代码块3 } }
本文出自 “java” 博客,请务必保留此出处http://shiju.blog.51cto.com/12691877/1923422
以上是关于二.if-else选择结构的主要内容,如果未能解决你的问题,请参考以下文章