返回列表 發帖

因數分解 (二) - 共有幾個因數

畫面上除了顯示因數外
並顯示有幾個因數
  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     //因數計算機
  7.     // 10 => 1,2,5,10
  8.    
  9.     int num = 0;
  10.     int count =0;
  11.     cin >> num;
  12.    
  13.     for(int i=1;i<=num;i++)
  14.     {
  15.       if(num % i ==0)
  16.       {
  17.         cout << i << ",";
  18.         count++;
  19.       }        
  20.     }
  21.    
  22.     cout <<"共有:" << count<< "個";
  23.    
  24.     system("pause");
  25.     return 0;   
  26. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表