package com.test;
public class Kongzhiyuju {
@SuppressWarnings("unused")
public static void main(String[] args) {
// 1.程序结构:自上而下顺序执行
//2.if语句:当if表达式为true时,执行代码1,否则执行else里面的代码2;
int age =7;
++age;
if(age>=13){
System.out.println("上初中");
}else if(age>=7&&age<13){
System.out.println("上小学");
}else{
System.out.println("上幼儿园");
}
System.out.println(age);
//3.switch语句:满足一个case,会执行该case以下的所有语句,用break打断。
switch(age){
case 7:System.out.println(7);break;
case 8:System.out.println(8);break;
case 9:System.out.println(9);break;
default:System.out.println("default");
}
//while循环,表达式为true,不断循环
int num[]={1,2,3,4};
int index=0;
while(index<num.length){
System.out.println(num[index]);
index++;
}
//do while,同上
int a[]={1,2,3,4};
int b=0;
do{
System.out.println(a[b]);
b++;
}while(b<a.length);
//for(初始条件;判断条件;步进量);三个条件缺失就是死循环,相当于while(true);
int c[]={1,2,3,4};
int d=0;
for(int e=0;e<c.length;e++){
System.out.println(c[e]);
}
}
}
++a 和a++