流程控制語句

2021-10-16 17:56:46 字數 841 閱讀 9549

流程控制語句的分類

public class sequence 

}

public class main else if(score>=90 && score<=100)else if(score>=80 && score<90)else if(score>=60 && score<80)else

}}

public class main 

}}

public class main 

}}

public class main 

}}

public class main while (i<999);

}}

水仙花數

尋找1000以內的水仙花數 水仙花數 是指乙個 n 位數 ( n≥3 ),它的每個位上的數字的 n 次冪之和等於它本身。 (例如:1^3 + 5^3+ 3^3 = 153)

class whiletest

m ++ ;

} system.out.println("----------------------") ;

//統計水仙花數的個數

//定義乙個統計變數

int count = 0 ;

int n = 100;

while(n <= 999)

n++;

} system.out.println("水仙花數共有"+count+"個") ;

}}

Python流程控制語句流程控制語句

流程控制語句1 if語句 if 語句基本用法 if 表示式 語句塊其中,表示式可以是乙個單純的布林值或變數,也可以是比較表示式或邏輯表示式,如果表示式為真,則執行 語句塊 如果表示式的值為假,就跳 過 語句塊 繼續執行後面的語句。2 if else語句 if else 語句基本用法 if 表示式 語...

流程控制語句

for a b c 若迴圈體中出現continue,c語句仍得到執行。while dowhile b 執行完do後大括號,再檢驗while b 條件,若為真,繼續。從而有a語句塊至少執行一次的特性。continue 迴圈體內餘下語句忽略,繼續下次迴圈。break用於跳出迴圈或switch.case....

流程控制語句

迴圈 while do while for 判斷 if else switch case 異常處理 try catch finally throw 分支 break continue label return 迴圈 while和do while語句 while語句用於在條件保持為true時反覆執行乙...