整数的所有因子
#include<iostream>
using namespace std;
int main()
{int i, j;cout << "輸入整數(shù)" << endl;cin >> i;cout << "整數(shù)的因子" << endl;for (j = 1; j < i + 1; j++){if (i%j == 0)//取的是余數(shù)cout << j << endl;}cout << endl;system("pause");return 0;
}
總結(jié)