首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴皖西的神的代码贴C语言
#include <stdio.h>

 void  fun(int n)
{
 int i,j;
 long int sum=0,temp;
 for(i=1;i<n;i++)
 {  temp=0;
  for(j=1;j<=i;j++)
    temp+=j;

sum+=temp; 
......................
阅读全部 | 2013年10月11日 16:59
1
皖西的神