本帖最後由 李泳霖 於 2024-6-15 17:12 編輯
設計一小程式, 使能快速列出任一正整數的所有因數, 參考執行畫面如下:
備註
本單元解題需先了解何謂因數,以下網站可做參考https://www.junyiacademy.org/cou ... ade-5-a/g05-menzs5b- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x;
- cout<<"請輸入一正整數: ";
- cin>>x;
- cout<<x<<"的因數有: ";
- for(int i=1; i<=x; i++)
- {
- if(x%i==0)
- cout<<i<<" ";
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |