Board logo

標題: 因數分解 (一) [打印本頁]

作者: 王瑞喻    時間: 2020-7-31 17:43     標題: 因數分解 (一)

設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:


作者: 鐘彥博    時間: 2020-8-1 16:22

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

作者: 呂尚霖    時間: 2020-8-1 16:24

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入一正整數: ";
  8.     cin>>x;
  9.     cout<<x<<"的因數有: ";
  10.     for(int i=1; i<=x; i++)
  11.     {
  12.         if(x%i==0)
  13.         {
  14.             cout<<i<<" ";         
  15.         }
  16.     }
  17.     cout<<endl;   
  18.     system("pause");
  19.     return 0;      
  20. }
複製代碼

作者: 李柏穎    時間: 2020-8-1 16:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入一整數: ";
  8.     cin>>a;
  9.     cout<<a<<"的因數有: ";
  10.     for(int i=1; i<=a; i++)
  11.     {
  12.         if(a%i==0)
  13.         {
  14.               cout<<i<<" ";   
  15.         }
  16.     }
  17.     cout<<endl;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 潘堉恩    時間: 2020-8-1 16:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int x;
  7.   cout<<"請輸入一正整數: ";
  8.   cin>>x;
  9.   cout<<x<<"的因數有: ";
  10.   for(int i=1; i<=x; i++)
  11.   {
  12.     if(x%i==0)
  13.   
  14.      {
  15.      cout<<i<<"    ";
  16.      }
  17.   }
  18.     cout<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

作者: 董定宇    時間: 2020-8-1 16:30

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"他媽給我輸入一整數"<<endl;
  8.    cin>>x;
  9.    for(int i=1;i<=x;i++)
  10.    {
  11.       if(x%i==0)
  12.       {
  13.            cout<<i<<"                             "<<endl;
  14.       }
  15.   
  16.    }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2