本帖最後由 許婷芳 於 2019-10-25 20:41 編輯
設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int i;
- cout<<"請輸入一正整數:";
- cin>>i;
- cout<<i<<"的因數有:";
- for(int j=1;j<=i;j++)
- {
- if(i%j==0)
- {
- cout<<j<<" ";
- }
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |