- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a;
- while(true)//條件成立
- {
- system("cls");
- cout<<"請輸入一正整數: ";
- cin>>a;
-
- cout<<a<<"的因數有: ";
- for(int i=1;i<=a;i++)//1 2 3 ...a
- {
- if( a % i == 0)//判斷是否為因數
- {
- cout<<" "<<i;
- }
- }
- cout<<endl;
-
- system("pause");
- }
- return 0;
- }
複製代碼 |