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