標題:
因數分解 (六) - 求最大公因數 (break敘述)
[打印本頁]
作者:
陳曜誌
時間:
2024-7-24 14:18
標題:
因數分解 (六) - 求最大公因數 (break敘述)
利用break敘述,於符合條件時,立即跳出迴圈。
本帖隱藏的內容需要回復才可以瀏覽
作者:
李昱辰
時間:
2024-7-29 19:37
#include<iostream>
using namespace std;
int main()
{
int x,y,gcd,smaller;
cout<<"請輸入第一個數:";
cin>>x;
cout<<"請輸入第二個數:";
cin>>y;
cout<<x<<"與"<<y<<"的最大公因數是:";
if(x<y)
{
smaller=x;
}
else
{
smaller=y;
}
for(int i=smaller;i>0;i--)
{
if(x%i==0 && y%i==0)
{
gcd=i;
break;
}
}
cout<<gcd<<endl;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2