標題:
[作業] 因數分解 (二) - 共有幾個因數
[打印本頁]
作者:
方浩葦
時間:
2024-4-19 11:33
標題:
[作業] 因數分解 (二) - 共有幾個因數
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-5-11 15:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, sum=0;
cout<<"請輸入一正整數: ";
cin>>x;
cout<<x<<"的因數有: ";
for(int i=1; i<=x; i++)
{
if(x%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl<<"總共有"<<sum<<"個!"<<endl;
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2