18 有關迴圈結構的綜合例項

2021-06-23 03:16:50 字數 727 閱讀 3293

//_18_綜合例項

//_18_main.cpp

//有關迴圈結構的綜合例項

//任意給出乙個數,判斷其是否為素數,如果是,找出組成該素數的基本元素

#include #include #include //判斷乙個數是否是素數

bool judgeprimenumber(int);

//判斷乙個素數是否可以分解成兩個素數之和

bool judgebasicelement(int);

int main()

else

continue;}}

}}

else if(!judgebasicelement(num))//num是素數但不可以分解成兩個素數之和的情況

printf("%d是素數但不可以分解成兩個素數之和.\n",num);

else

else

continue;

}} }

system("pause");

return 0;

}//判斷乙個數是否是素數

bool judgeprimenumber(int number)

return true; }}

bool judgebasicelement(int number)

else

return true;

} return false;

}

java 迴圈結構 練習例項

1 輸出1到100這100個數 分別用for while和do while實現 public class test system.out.println n 換兩行 system.out.println while迴圈輸出 int i 1 while i 100 system.out.println...

順序 迴圈 選擇結構例項

if結構流程圖 巢狀if控制語句 public static void main string args else else else while和do while迴圈結構 for迴圈結構 跳轉語句 break語句 跳出迴圈。public static void main string args i...

有關迴圈結構程式設計學後總結

通過對迴圈結構程式設計單元的學習,我已經初步了解了while語句,do while語句,for語句,break語句和continue語句。有關迴圈結構的語句,它使得程式中重複的部分得到極大的壓縮,極大程度的方便了程式的編寫。while語句和do while語句有所相似,但也有不同之處。while語句...