返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int c,b,a=0;
  7.     cout<<"請輸入第一個正整數: ";
  8.     cin>>c;
  9.     cout<<"請輸入第二個正整數: ";
  10.     cin>>b;
  11.     cout<<"兩個整數的公因數有:";
  12.     for(int h=1;h<=c+b;h++)
  13.     {
  14.          if(c%h==0&&b%h==0)
  15.             {   
  16.                 cout<<h<<" ";
  17.                 F++;
  18.             }   
  19.     }     cout<<endl;
  20.     cout<<c<<"和"<<b<<"有"<<F<<"個公因數"<<endl

  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

TOP

返回列表