Mi Funcion Máximo de tres números X87896


Statement
 

pdf   zip

html

Escribir un programa que lea dos números enteros a, b, c y muestre el valor máximo entre ellos tres. Para determinar el máximo deberá hacer uso de una función implementada llamada int max3 (int a, int b, int c). La función deberá recibir tres parámetros enteros a, b, c, y devolver como resultado el valor máximo entre ellos.

Entrada

Tres números enteros a, b y c.

Salida

El valor máximo entre los números introducidos.

Observación

  • No olvide implementar la función indicada;
  • No olvide imprimir un salto de línea al final.
  • Tome el siguiente código en c++ como guía.
#include <iostream> using namespace std; int max3(int a, int b, int c){ if( a >= b && a >= c ) return a; if( b >= a && b >= c ) return b; return c; } int main() { int a; int b; int c; cin >> a; cin >> b; cin >> c; cout << max3(a, b, c) << endl; return 0; }
Public test cases
  • Input

    -1 1 1
    

    Output

    1
    
  • Input

    5 5 5
    

    Output

    5
    
  • Input

    -1 2 1
    

    Output

    2
    
  • Input

    3 1 1
    

    Output

    3
    
  • Input

    0 0 4
    

    Output

    4
    
  • Input

    8 6 9
    

    Output

    9
    
  • Information
    Author
    Language
    Spanish
    Official solutions
    C++
    User solutions
    C++ Java Python