Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/05/2012, 21:30
Avatar de cristiantorres
cristiantorres
 
Fecha de Ingreso: marzo-2012
Mensajes: 383
Antigüedad: 12 años, 9 meses
Puntos: 61
Respuesta: Problema en dev c++

Prueba algo así y cuentas .
Código C++:
Ver original
  1. #include<iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.     int edad, h, m, peh,pem, asistencia, sexo,eh,em;
  9.     eh=0;
  10.     em=0;
  11.     peh=0;
  12.     pem=0;
  13.     m=0;
  14.     h=0;
  15.     asistencia=0;
  16.  
  17.  
  18.     while(edad>0 )
  19.     {
  20.         cout<<"Ingrese 1 para mujer 2 para hombre:";
  21.         cin >>sexo;
  22.         if(sexo==1)
  23.         m=m+1;
  24.         else
  25.         {
  26.             if(sexo==2)
  27.             h=h+1;
  28.         }
  29.         cout<<"Ingrese la edad:";
  30.         cin >>edad;
  31.         if(edad==0)
  32.         {
  33.             if(sexo==1)
  34.             m=m-1;
  35.             else
  36.             {
  37.                 if(sexo==2)
  38.                 h=h-1;
  39.             }
  40.  
  41.         }
  42.         else
  43.         {
  44.             if(edad>=18)
  45.             {
  46.                 if(sexo==1)
  47.                 {
  48.                     em+=edad;
  49.                 }
  50.                 else
  51.                 if(sexo==2)
  52.                 {
  53.                 eh+=edad;
  54.                 }
  55.             }
  56.             else
  57.             {
  58.                 cout<<"No se permiten menores de edad...\n";
  59.             }
  60.         }
  61.  
  62.     }
  63.     peh=eh/h;
  64.     pem=em/m;
  65.     asistencia=h+m;
  66.     cout<<"LA CANTIDAD DE ASISTENTES ES: "<<asistencia<<endl;
  67.     cout<<"LA CANTIDAD DE HOMBRES ES : "<<h<<endl;
  68.     cout<<"LA CANTIDAD DE MUJERES ES : "<<m<<endl;
  69.     cout<<"EL PROMEDIO DE EDAD DE HOMBRES ES : "<<peh<<endl;
  70.     cout<<"EL PROMEDIO DE EDAD DE MUJERES ES : "<<pem<<endl;
  71.     return 0;
  72. }
__________________
Visita mi Blog C#, vb.net, asp.net, sql, java y mas...
Blog Cristian Torres