返回列表 發帖

因數分解 (一)

本帖最後由 tonyh 於 2019-10-25 20:34 編輯

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

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

  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 s=1; s<=a; s++)
  11.     {
  12.        if(a%s==0)
  13.        {
  14.             cout<<s<<" "<<endl;        
  15.        }
  16.     }
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     Iamfish:
  7.     int n;
  8.     cout<<"請輸謹慎的入一個超級宇宙霹靂無敵正整數: ";
  9.     cin>>n;
  10.     cout<<n<<"的超級宇宙霹靂無敵因數有: ";
  11.     for(int i=1; i<=n; i++)
  12.     {
  13.         if(n%i==0)
  14.             cout<<i<<" ";
  15.     }
  16.     cout<<endl<<endl;
  17.     goto Iamfish;
  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 b=1; b<=a; b++)
  11.     {
  12.             if(a%b==0)
  13.             {
  14.             cout<<b;  
  15.             }
  16.     }
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼
李宇澤Oscar

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表