Puedes hacer esto:
Código c++:
Ver original#include <iostream.h>
#include <stdlib.h>
int N, CONT, CANTMA, CANTME, CANTI;
float EST,EST_CONSTA=1.7;
int main ()
{
do
{
cout<<"Introduzca el valor de N:";
cin>>N;
if(N <= 0)
{
cout<<"Error";
}
}while(N <= 0);
do
{
cout<<"Introduzca una estatura:";
cin>>EST;
if(EST <= 0)
{
cout<<"Error";
}
else
{
CONT++;
if(EST > EST_CONSTA)
{
CANTMA++;
}
else
{
if(EST == EST_CONSTA)
{
CANTI++;
}
else
{
CANTME++;
}
}
}
}while(CONT != N);
cout<<"La cantidad de estaturas mayores a "<<EST_CONSTA<<" es:"<<CANTMA<<endl;
cout<<"La cantidad de estaturas menores a "<<EST_CONSTA<<" es:"<<CANTME<<endl;
cout<<"La cantidad de estaturas iguales a "<<EST_CONSTA<<" es:"<<CANTI<<endl;
}