" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
//Leer 20 números enteros e imprimir cuantos son //positivos, cuantos negativos y cuantos neutros.
#include<iostream>
using namespace std;
int main(){
int positivo, negativo, neutro, numeros;
positivo=0;
negativo=0;
neutro=0;
for(int i=1;i<=20;i++){
cin>>numeros;
if(numeros>0){
positivo++;
}
if(numeros<0){
negativo++;
}
if(numeros==0){
neutro++;
}
}
cout<<"son "<<positivo<<" positivos ingresados."<<endl;
cout<<"son "<<negativo<<" negativos ingresados."<<endl;
cout<<"son "<<neutro<<" neutros ingresados."<<endl;
}