首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴Mror的代码贴全部
// rr.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include<stdio.h>
int sum1(int n)
{
if(n==1)return 1;
return sum1(n-1)*n;
}

int sum2(int n)
......................
阅读全部 | 2018年11月5日 22:33
1
Mror