標題:
因數分解 (四) - 兩數求公因數
[打印本頁]
作者:
陳品肇
時間:
2018-8-3 23:16
標題:
因數分解 (四) - 兩數求公因數
讓使用者任意輸入兩正整數, 電腦回應它們有那些公因數, 以及共有幾個公因數.
執行畫面如下:
[attach]4639[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, smaller, sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=(x<y)?x:y;
cout<<x<<"與"<<y<<"的公因數有: ";
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<"\n總共有"<<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2018-8-4 17:05
此帖僅作者可見
作者:
蔡季庭
時間:
2018-8-4 17:09
此帖僅作者可見
作者:
戴偉宸
時間:
2018-8-4 17:21
此帖僅作者可見
作者:
王旋兆
時間:
2018-8-4 17:23
此帖僅作者可見
作者:
戴安利
時間:
2018-8-4 17:25
此帖僅作者可見
作者:
戴唯陞
時間:
2018-8-4 17:31
此帖僅作者可見
作者:
譚詩澐
時間:
2018-8-10 18:18
此帖僅作者可見
作者:
陳柏霖
時間:
2018-8-11 16:01
此帖僅作者可見
作者:
戴偉宸
時間:
2018-8-11 16:16
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2