欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java学习笔记23. if语句的使用

程序员文章站 2022-03-09 16:18:32
...

程序的语句的结构有顺序、选择和分支。

选择结构中,if语句是选择结构常用的选择语句。其结构如下:

public class demoIfs{
	public static void main(String[] args){
		int x = 99;
		if(x==1)
			System.out.println("x=1"); //语句如果不止一句,可以用 {} 扩起来
		else if(x==2)                      //else if 语句可以没有,也可以有无限多个,看实际的需要
			System.out.println("x=2");
		else if(x==3)
			System.out.println("x=3");
		else                               //else 语句可以没有,如果有,它代表在前面的条件都不符合的时候,程序要做的事情                             
                        System.out.println("x=99");
	}
}