Autor
|
Tema: mayor de tres numeros en c++... (Leído 14,335 veces)
|
rub'n
Desconectado
Mensajes: 1.217
(e -> λ("live now")); tatuar -> λ("α");
|
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; }
|
|
|
En línea
|
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen king
|
|
|
h0oke
Desconectado
Mensajes: 2.059
Coder ~
|
Esta es mi forma de resolverlo: #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; }
|
|
|
En línea
|
|
|
|
rub'n
Desconectado
Mensajes: 1.217
(e -> λ("live now")); tatuar -> λ("α");
|
gracias che,,
|
|
|
En línea
|
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen king
|
|
|
kconik
Desconectado
Mensajes: 8
|
mira yo buscaba ese oye pero lo puse en c++ y me marco 6 errores
|
|
|
En línea
|
|
|
|
h0oke
Desconectado
Mensajes: 2.059
Coder ~
|
¿Qué compilador utilizas?
|
|
|
En línea
|
|
|
|
kconik
Desconectado
Mensajes: 8
|
uno que se llama borland C++
|
|
|
En línea
|
|
|
|
h0oke
Desconectado
Mensajes: 2.059
Coder ~
|
Por favor agarra un libro de C/C++.
|
|
|
En línea
|
|
|
|
kconik
Desconectado
Mensajes: 8
|
yo apenas acabo de entrar a esto de C++
|
|
|
En línea
|
|
|
|
Draklit
|
Yo uso "Turbo C++ 4.5" y es muy bueno
|
|
|
En línea
|
|
|
|
rub'n
Desconectado
Mensajes: 1.217
(e -> λ("live now")); tatuar -> λ("α");
|
uno que se llama borland C++
bueno no c bajate el DEV C++ A MI ME DIO BIEN COMO ME LO ENSEÑO h0oke..
|
|
|
En línea
|
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen king
|
|
|
|
|