三种基本结构

1.顺序结构

电脑程序执行命令都是顺序结构来的。

2.选择结构
1.if…else用法

if语句至多只有一个else语句,else语句在所有的else if语句之后

if可以单独使用

if(score==100)
   {
     System.out.println("恭喜满分!!");
   }else if(score>=90&&score<100)
   {
     System.out.println("恭喜你取得A评价,请再接再厉!!");
   }else if(score>=80&&score<90)
   {
     System.out.println("恭喜你取得B评价,请再接再厉!!");
   }else if(score>70&&score<80)
   {
     System.out.println("恭喜你取得C评价,请再接再厉!!");
   }else if(score>=60&&score<70)  
   {
     System.out.println("你取得D评价,虽然你过关了,但是还要加油!!"); 
   } else if(score>=0&&score<=59)
   {
     System.out.println("你怎么学习的?怎么还挂科??快滚回去学习!!!");
   }else
   {
     System.out.println("成绩不合法");
   }
2.switch用法:
String RealName=="张学友"
switch (RealName)
{
    case "陈海翔":
     System.out.println("陈海翔");
        break;
        
     //当出现case语句之外的情况时,自动执行default下的语句
     default:
        System.out.println("未知名称");  
}
3.循环结构
1.while(条件判断语句)用法
//先判断条件
int a = 0;
while (a < 0) {
    System.out.println(a);
    a++;
}

//先执行一遍语句
do {
    System.out.println(a);
    a++;
} while (a < 0);
2.for( ;条件判断语句;执行语句)循环语句
for (int i = 0; i < str.length(); i++)
for (int i :numbers){
    System.out.println(i);}//增强for循环,for循环遍历的一个简写
上一篇:Set接口


下一篇:调度器30—task_struct相关成员说明