標題:
因數分解 (二) - 共有幾個因數
[打印本頁]
作者:
周政輝
時間:
2017-6-24 09:26
標題:
因數分解 (二) - 共有幾個因數
畫面上除了顯示因數外
並顯示有幾個因數
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
//因數計算機
// 10 => 1,2,5,10
int num = 0;
int count =0;
cin >> num;
for(int i=1;i<=num;i++)
{
if(num % i ==0)
{
cout << i << ",";
count++;
}
}
cout <<"共有:" << count<< "個";
system("pause");
return 0;
}
複製代碼
作者:
莊旻叡
時間:
2017-6-24 09:28
此帖僅作者可見
作者:
高品溫
時間:
2017-6-24 09:31
此帖僅作者可見
作者:
高睿辰
時間:
2017-6-24 09:34
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2