本帖最後由 tonyh 於 2013-12-14 17:52 編輯
所有因數的總和?- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a, b=0, c=0;
- cout<<"請輸入一正整數: ";
- cin>>a;
- cout<<a<<"的因數有: ";
- for(int i=1; i<=a; i++)
- {
- if(a%i==0)
- {
- cout<<i<<" ";
- b++; //b=b+1
- c=c+i; //c+=i
- }
- }
- cout<<endl<<"總共有"<<b<<"個!";
- cout<<endl<<"它們的總合為"<<c<<"!";
- cout<<endl<<endl;
- system("pause");
- return 0;
- }
複製代碼 |