mayor de tres numeros en c++...

Iniciado por rub'n, 26 Mayo 2010, 23:46 PM

0 Miembros y 1 Visitante están viendo este tema.

rub'n

buenas buenas ,,tengo un problemas GRANDE para mi y pequeño para ustedes,,,

tengo que resolver esto..el mayor de tres numeros ,,pero la sentencia if-else,,que lastima no la se aplicar bien


#include <iostream>


using namespace std;

int main ()

{
  int num1,num2,num3;
 
   cout<<"  introducir 3 numeros :"<<endl<<endl;
   
   cin>> num1 >> num2 >>num3;
   
  if (num1 > num2 )
   
   {
           
                cout<<" el  mayor es :"<<num1<<endl;
                 
                 
   }
   
   if(num1 > num3)
   
   {
 
   
                cout<<" el  mayor es :"<<num1<<endl;
               
                  }
   
                  else ( (num1 ) ! ( num3))
               
                  {
               
                   cout<<"el mayor es:"<<num3<<endl;
               
                   }
     
    if(num1  )          
                     
               
               
   system("pause");
   return 0;
}


rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen

h0oke

Esta es mi forma de resolverlo:
Código (cpp) [Seleccionar]

#include <iostream>

int mayor(int a, int b){
  if(a >= b)
    return a;
  else
    return b;
}

int dmayor(int a, int b, int c){
  if(mayor(a,b) >= c)
    return mayor(a,b);
  else
    return c;
}

int main(){
  int a,b,c,res;
  std::cin>>a>>b>>c;
  res = dmayor(a,b,c);
  std::cout<<"El mayor"<<res<<std::endl;
}

rub'n



rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen

kconik

mira yo buscaba ese
oye pero lo puse en c++ y me marco 6 errores

h0oke


kconik


h0oke

Por favor agarra un libro de C/C++.

kconik

yo apenas acabo de entrar a esto de C++

Draklit

Yo uso "Turbo C++ 4.5" y es muy bueno  ;D

rub'n

Cita de: kconik en 27 Mayo 2010, 03:02 AM
uno que se llama borland C++


bueno no c bajate el DEV C++  A MI ME DIO BIEN COMO ME LO ENSEÑO h0oke..
;D


rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen