#include <iostream.h>
#include <conio.h>
int main()
{
int edades[8] = {25,40,30,10,32,15};
for (int x =0; x<6;x++)
{
if (edades[x] <=20)
cout<<edades[x]<<" ";
}
cout<<"\n";
for (int x=0;x<6;x++)
{
if ((edades[x] <=30)&&(edades[x]>20))
cout<<edades[x]<<" ";
}
cout<<"\n";
for (int x=0;x<6;x++)
{
if ((edades[x] <=40)&&(edades[x]>30))
cout<<edades [x]<<" ";
}
getch();
}
necesito saber
en terminos generales que realiza
y como se desplegaria el resultado en la pantalla si llegara a ejecutar este programa
gracias de antemano
urgente estoy en prueba xD