选择结构
Posted 冻冻玖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择结构相关的知识,希望对你有一定的参考价值。
一:什么是if结构?
语法1:
public class Demo {
public static void main (String [] args){
//语句1;
//语句二;
if(条件){
//语句3;
}
//语句4;
}
}
二:使用if-else选择结构
语法2:
if ( 条件 ) {
//代码块1
}else {
//代码块2
}
事例2:
public class SimpleIF {
public static void main (String [] args){
int score = 91;
if (Score >=98) {
System.out.println("老师说:不错,奖励一个MP4!");
} else {
System.out.println("老师说:惩罚进行编码!");
}
}
}
以上是关于选择结构的主要内容,如果未能解决你的问题,请参考以下文章