资源描述
单击此处编辑母版标题样式,单击此处编辑母版文本样式,第二级,第三级,第四级,第五级,*,JAVA,控制语句,目标,流程控制语句,数组与字符串,流程控制语句,1,分支语句:,if-else,switch-case,2,循环语句:,for,while,do-while,3,例外处理语句:,try-catch-finally,throw,4,其他:,break,continue,label:,return,If-else,语句,例题:,比较两个数的大小,并按从小到大的次序输出。,public class CompareTwo,public static void main(String args ),double d1=23.4;,double d2=35.1;,if(d2=d1),System.out.println(d2+=+d1);,else,System.out.println(d1+=+d2);,switch,语句,switch,语句是实现多分支选择结构的另一个语句:,switch(,整数选择因子,)case,整数值,1:,语句,;break;case,整数值,2:,语句,;break;case,整数值,3:,语句,;break;case,整数值,4:,语句,;break;case,整数值,5:,语句,;break;/.default:,语句,;,说明:,表达式,expression,可以返回任一整型类型的值,(,如整型、字符型,),case,子句中的值必须是常量,而且所有,case,子句中的值应是不同的,case,通常与,break,语句联用,以保证多路分支的正确实现。,多个,case,可以公用一组执行语句,。,case 1:,case 2:,case 3:cout,“,hello,”,case 1,2,3:cout,“,hello,”,/error,写出输出结果,int i=9;switch(i)default:System.out.println(default);case 0:System.out.println(zero);break;case 1:System.out.println(one);case 2:System.out.println(two);,例题:根据考试成绩的等级打印出百分制分数段。,public class GradeLevel,public static void main(String args ),System.out.println(n*first situation*);,char grade=C;/normal use,switch(grade),case A:System.out.println(grade+is 85100);break;,case B:System.out.println(grade+is 7084);break;,case C:System.out.println(grade+is 6069);break;,case D:System.out.println(grade+is 60);break;,default:System.out.println(input error);,for,循环,语句,格式,for(,初始表达式,;,布尔表达式,;,步进,),语句,说明:,无论初始表达式,布尔表达式,还是步进,都可以置空。,for,语句执行时,首先执行初始化操作,然后判断终止条件是否满足,如果满足,则执行循环体中的语句,最后执行迭代部分。完成一次循环后,重新判断终止条件。,可在,for,语句里定义多个变量,但它们必须具有同样的类型:,for(int i=0,j=1;i 10 i+,j+),for,循环,语句,说明:,Java,里唯一用到逗号运算符的地方就是,for,循环的控制表达式。,public class CommaOperator,public static void main(String args),for(int i=1,j=i+10;i 5;i+,j=i*2),System.out.println(i=+i+j=+j);,输出如下:,i=1 j=11,i=2 j=4,i=3 j=6,i=4 j=8,while,循环,语句,格式:,while(,布尔表达式,),语句例子:,public class WhileTest,public static void main(String args),double r=0;,while(r 0.99d),r=Math.random();,System.out.println(r);,do-while,循环,语句,格式,:,do,语句,while(,布尔表达式,),例子,:,先执行循环体,后计算终止条件,若结果为,true,,则继续执行循环体。,循环体,至少执行一次。,其他循环控制,语句,break,语句,break,语句,,跳出它所在的循环语句或,switch,语句,并从紧跟该循环语句或,switch,语句后的第一条语句处执行,continue,语句,continue,语句,,用来结束本次循环,跳过循环体中下面尚未执行的语句,接着进行终止条件的判断,以决定是否继续循环,例题,1,:,BreakAndContinue.java,返回语句,return,return,语句从当前方法中退出,返回到调用该方法的语句处,并从紧跟该语句的下一条语句继续程序的执行。返回语句有两种格式:,return expression,return,return,语句通常用在一个方法体的最后,否则会产生编译错误,除非用在,if-else,语句中,练习,(1),写一个程序,打印出,1,到,100,间的整数。,(2),创建一个,switch,语句,为每一种,case,都显示一条消息。在每个,case,后面都放置一个,break,,并对其进行测试。然后,删除,break,,看看会有什么情况出现。,预测下列代码的结果:,public class MyIf,boolean b;,public static void main(String argv),MyIf mi=new MyIf();,MyIf(),if(b),System.out.println(The value of b was true);,else,System.out.println(The value of b was false);,1)Compile time error variable b,was not initialised2)Compile time error the parameter,to the,if,operator must evaluate,to a,boolean,3)Compile time error,cannot,simultaneously create and assign,value for boolean value4)Compilation and run with output of false,请写出,testing(),被调用时的输出结果,void testing(),one:,two:,for(int i=0;i 3;i+),three:,for(int j=10;j 2),continue one;,public class MyIf,public static void main(String argv),MyIf mi=new MyIf();,MyIf(),boolean b=false;if(b=false),System.out.println(The value of b is+b);,有无输出结果?,输出结果,public class MySwitch,public static void main(String argv),MySwitch ms=new MySwitch();ms.amethod();,public void amethod(),char k=10;,switch(k),default:,System.out.println(This is the default output);break;,case 10:System.out.println(ten);break;case 20:System.out.println(twenty);break;,public class MySwitch,public static void main(String argv),MySwitch ms=new MySwitch();,ms.amethod();,public void amethod(),int k=10;,switch(k),default:/Put the default at the bottom,not here,System.out.println(This is the default output);,break;,case 10:,System.out.println(ten);,case 20:,System.out.println(twenty);,break;,
展开阅读全文