標題:
029 找出所有因數
[打印本頁]
作者:
游東祥
時間:
2014-4-5 13:25
標題:
029 找出所有因數
輸入一個數字並顯示出該數字之所有因數
作者:
林宇翔
時間:
2014-4-5 13:42
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout << "請輸入一個數字;" ;
cin >> x;
cout << "這個數字的因數有:";
for(int i = 1; i <= x; i ++)
{
if (x % i == 0)
{
cout << i << " ";
}
}
cout << endl;
system ("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-4-5 13:45
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int h;
cout << "請輸入一個數字";
cin >> h;
cout << h << " 的因數有:";
for (int i = 1; i <= h; i++)
{
if (h % i == 0)
{
cout << i << " ";
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2