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