请帮忙修改下程序
#include <stdio.h>#include <stdlib.h>
int main(){
int n,x,t,p;
scanf("%d %d",&x,&n);
while(1){
p=0;
t=0;
if(x=0){
break;
}
else if(x>0){
{
p+=p;}
else if(x<0){
t+=t;}
}
else
printf("\n");
}
printf("%d %d",t,p);
system("PAUSE");
return 0;
}
题目:读入一系列整数,统计出正整数的个数和负整数的个数,读入0则结束。