返回列表 發帖

因數分解 (一)

設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:

Su Wa

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int a;
  7.    re:
  8.    system("cls");
  9.    cout<<"請輸入一正整數: ";
  10.    cin>>a;
  11.    cout<<a<<"的因數有: ";
  12.    for(int b=1;b<=a;b++)
  13.    {
  14.        if(a%b==0)
  15.        {
  16.        cout<<b<<" ";
  17.        }
  18.    }
  19.    cout<<endl;
  20.    system("pause");
  21.    goto re;
  22.    system("pause");
  23.    return 0;
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"請輸入一正整數: ";
  8.     cin>>x;
  9.     cout<<x<<"的因數有: ";
  10.     for(int i=1; i<=x; i++)
  11.     {
  12.         if(x%i==0)
  13.         {
  14.             cout<<i<<" ";         
  15.         }
  16.     }
  17.     cout<<endl;   
  18.     system("pause");
  19.     return 0;      
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"請輸入一整數: ";
  8.     cin>>a;
  9.     cout<<a<<"的因數有: ";
  10.     for(int i=1; i<=a; i++)
  11.     {
  12.         if(a%i==0)
  13.         {
  14.               cout<<i<<" ";   
  15.         }
  16.     }
  17.     cout<<endl;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int x;
  7.   cout<<"請輸入一正整數: ";
  8.   cin>>x;
  9.   cout<<x<<"的因數有: ";
  10.   for(int i=1; i<=x; i++)
  11.   {
  12.     if(x%i==0)
  13.   
  14.      {
  15.      cout<<i<<"    ";
  16.      }
  17.   }
  18.     cout<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"他媽給我輸入一整數"<<endl;
  8.    cin>>x;
  9.    for(int i=1;i<=x;i++)
  10.    {
  11.       if(x%i==0)
  12.       {
  13.            cout<<i<<"                             "<<endl;
  14.       }
  15.   
  16.    }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表