返回列表 發帖

因數分解(二)-重複使用的版本

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int a=0;
  7.     while(true)//條件強制通過
  8.     {
  9.         system("cls");//清除
  10.         cout<<"請輸入一正整數:"<<endl;
  11.         cin>>a;
  12.         
  13.         cout<<a<<"的因數有:";
  14.         
  15.         for(int b=1;b<=a;b++)
  16.         {
  17.            if(a%b == 0)     
  18.            {
  19.               cout<<" "<<b;         
  20.            }   
  21.         }
  22.         cout << endl;
  23.         system("pause");
  24.     }
  25.     return 0;
  26. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表