標題:
三數求公因數
[打印本頁]
作者:
陳曜誌
時間:
2024-7-24 14:15
標題:
三數求公因數
讓使用者依序輸入三個正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳曜誌
時間:
2024-7-27 14:09
#include<iostream>
using namespace std;
int main()
{
re:
cout<<"請依序輸入三個正整數: ";
int x,y,z,sum=0;
cin>>x>>y>>z;
int smaller=x<y?x:y;
smaller=smaller<z?smaller:z;
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;
goto re;
}
複製代碼
作者:
李昱辰
時間:
2024-8-1 14:00
#include<iostream>
using namespace std;
int main()
{
int x,y,z,smaller;
int count=0;
cout<<"請依序輸入三個正整數:";
cin>>x>>y>>z;
if(x<y)
{
smaller=x;
}
else if(y<x)
{
smaller=y;
}
if(smaller<z)
{
smaller=z;
}
cout<<x<<y<<z<<"的公因數有:";
for(int i=1;i<=smaller;i++)
{
if(x%i==0 && y%i==0 && z%i==0)
cout<<i<<"\t";
count++;
}
cout<<endl<<"總共有"<<count<<"個!"<<endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2