求助 为啥编译连接都行 但是执行时不行呢---初学者 希望大侠多指教 感激不尽!!
#include <stdio.h>void main()
{
int i,s=0,t=0,j,n;
printf("please input the number n:\n");
scanf("%d\n",&n);
if (n<0)
{printf("the number must >=0\n");
return;
}
for (i=1;i<=n;i++)
{
for (j=1;j<=i;j++)
t+=j;
s+=t;
}
printf("数列的值为:%d\n",&s);
}