返回列表 發帖

[隨堂測驗] 因數分解 (三) - 所有因數的總和

所有因數的總和?


本帖隱藏的內容需要回復才可以瀏覽

  1. #include<iostream>
  2. #include<iostream>
  3. #include<cstdlib>
  4. using namespace std;
  5. int main()
  6. {
  7.     int i, sum=0, sum2=0;
  8.         cout<<"輸入一個數字:";
  9.         cin>>i;  
  10.     for(int c=1; c<=i; c++)
  11.     {
  12.         if(i%c==0){
  13.         cout<<c<<" ";
  14.         sum++;
  15.         sum2+=c;
  16.         }
  17.     }
  18.     cout<<endl;
  19.     cout<<"總共有"<<sum<<"個"<<endl;
  20.     cout<<"它們的總和為"<<sum2<<endl;

  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

TOP

返回列表