main()
{
int i,sum=0; i=1;
loop: if(i<=100)
{sum=sum+i; i++; goto loop;} printf("%d\n",sum);
}
0+1+2+3+4+...100
印出前100個級數
初学小白,谢指教。