#include <iostream>
using namespace std;
int main()
{
int n,x,k_otr=0,k_pol=0,k_nul=0;
cin>>n;
for(int i=1;i<=n;i++)
cin>>x;
if(x>0)
k_pol++;
else if(x<0)
k_otr++;
else
k_nul++;
}
cout<<"k_pol="<<k_pol<<"; k_otr="<<k_otr<<"; k_nul="<<k_nul;
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
#include <iostream>
using namespace std;
int main()
{
int n,x,k_otr=0,k_pol=0,k_nul=0;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>x;
if(x>0)
k_pol++;
else if(x<0)
k_otr++;
else
k_nul++;
}
cout<<"k_pol="<<k_pol<<"; k_otr="<<k_otr<<"; k_nul="<<k_nul;
return 0;
}