Board logo

標題: [隨堂測驗] 因數分解 (三) - 所有因數的總和 [打印本頁]

作者: 方浩葦    時間: 2024-4-19 11:33     標題: [隨堂測驗] 因數分解 (三) - 所有因數的總和

所有因數的總和?


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

作者: 鄭豊翰    時間: 2024-5-4 16:31

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2