int a; scanf(“%d”,&a); int x; while(scanf(“%d”,&x)&&x<=0);//注意后面;分开 int s=0; for(int i =0;i<x;i++) { s +=a+i;//加上每回增加的量 } printf(“%d”,s);