返回列表 發帖

因數分解 (四) - 求公因數

讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     //求公因數
  7.     // 10 ,25  => 1 ,5
  8.    
  9.     int num = 0;
  10.     int num2 = 0;
  11.     cout << "請輸入第一個數字"<< endl;
  12.     cin >> num;
  13.     cout << "請輸入第二個數字" << endl;
  14.     cin >> num2;
  15.     for(int i=1;i<=num;i++)
  16.     {
  17.        if(num % i ==0  && num2 % i ==0)
  18.        {
  19.           cout << i << ",";
  20.        }        
  21.     }
  22.   
  23.    
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表