void function()
{
int Positive=0;
int Negative=0;
int temp=0;
cin>>temp;
while(temp!=0)
{
if(temp>0)
Positive++;
else
Negative++;
cin>>temp;
}
cout<<"正数有"<
void function(){ int Positive=0; int Negative=0; int temp=0;