1、流程控制結構,流程圖 條件控制敘述 迴圈控制敘述,流程圖,處理過程、執行的操作 開始、結束 選擇結構(if/else)、switch迴圈結構for、while、(do/while) 連結線指定執行的順序 連結多個來源的箭頭 將資料存入檔案或裝置 輸入、輸出,if,If(score=60) System.out.println(“成績及格”);System.out.println(“分數:”+score); ,條件敘述開始,score=60,執行程式區塊,條件敘述結束,false,true,條件控制敘述,if/else二選一條件敘述 ,if(score=60,條件敘述開始,條件敘述結束,scor
2、e=60& type=m,執行程式區塊(一),執行程式區塊(二),false,true,條件控制敘述,多選一條件敘述,方法一:if/else/if if(score=80)System.out.println(“學生成績A”); elseif(score=70)System.out.println(“學生成績B”);elseSystem.out.println(“學生成績C”);,Start,Score=80,Score=70,End,Block(1),Block(3),Block(2),false,true,true,false,方法二:switch switch(變數) case 常數1:
3、程式敘述1;break;case 常數2:程式敘述2;break;case 常數3:程式敘述3;break;.default:程式敘述; ,Start,End,grade=A,grade=B,grade=C,Block(1),Block(2),Block(3),true,true,true,false,false,false,迴圈控制敘述,for迴圈敘述 for(初始值;結束條件;變數更新) 程式敘述; Ex1:1+1/2+1/3+1/4+1/n n=37for(n=1;n=37;n+)x=x+(1/n);System.out.println(“總和:”+x);,Start,n=1,n=37,
4、x=x+(1/n),n+,End,false,true,Ex2: 從5到100顯示5的倍數,例如:5、10、15、for(i=5;i=100;i+)if(i%5)=0)System.out.print(i+”t”);,Start,End,i=5,i=100,(i%5)=0,print i,i+,false,false,true,true,while迴圈敘述 while(結束條件) 程式敘述; Ex: 1*1+2*2+3*3+n*n n=54 n=1; while(n=54) x=x+(n*n);n+; System.out.println(“總和:”+x);,Start,n=54,x=x+(n
5、*n),n+,End,false,true,do/while迴圈敘述 do 程式敘述; while(結束條件) Ex:d0 f=(9.0*c)/5.0+32.0;System.out.println(c+”/t”+f);c=c+10; while(c=100),Start,do,block,c=c+10,c=100,End,true,false,break和continue指令敘述 break 指令中斷迴圈 continue指令繼續迴圈 for(i=1;i=10;i+) if(i%2)=0)continue;System.out.println(“:”+i);total=total+i; ,報告完畢 請多指教,