首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴天昊大师的代码贴C语言
#include <stdio.h>
long fun(int n);
int main()
{
int  m;
scanf("%d", &m);
printf("The result is %ld\n", fun(m));
return 0;
 }
long fun(int n)
{
int i,result=1;
......................
阅读全部 | 2017年1月7日 09:37
1
天昊大师