標題:
[作業] 三數求公因數
[打印本頁]
作者:
方浩葦
時間:
2024-4-19 11:34
標題:
[作業] 三數求公因數
讓使用者依序輸入三個正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-6-8 09:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, z, smaller, small, sum;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
cout<<"請輸入第三個數: ";
cin>>z;
smaller=x<y?x:y;
small=z<small?z:small;
cout<<x<<"與"<<y<<"與"<<z<<"的最大公因數為: ";
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0 && z%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2