时间:2012-10-01 18:25:44
请编写函数fun,函数的功能是:计算并输出给定整数n的所有因子(不包过1和n本身)之和。规定n的值不大于1000.
int fun(int n)
{
int s=0,i;
电脑版 | 手机版 | 返回顶部