Saltar al contenido

encuentra el valor máximo en un array ejemplo de código c ++

Nuestros mejores investigadores agotaron sus depósitos de café, buscando todo el tiempo por la resolución, hasta que Juliana halló el hallazgo en Gitea así que ahora la compartimos con nosotros.

Ejemplo 1: cómo obtener el número más grande en c ++ array

#include 
using namespace std;int main()//n is the number of elements in the array
   int n, largest;int num[50];
   cout<<"Enter number of elements you want to enter: ";
   cin>>n;/* Loop runs from o to n,in such a way that first
    * element entered by user is stored in num[0], second 
    *in num[1]and so on.*/for(int i =0; i < n; i++)
      cout<<"Enter Element "<<(i+1)<<": ";
      cin>>num[i];// Storing first array element in"largest" variable
   largest = num[0];for(int i =1;i < n; i++)/* We are comparing largest variable with every element
       * of array. If there is an element which is greater than
       * largest variable value then we are copying that variable
       * to largest, this way we have the largest element copied
       * to the variable named "largest" at the end of the loop 
       **/if(largest < num[i])
         largest = num[i]; 
   cout<<"Largest element in array is: "<<largest;return0;

Ejemplo 2: encuentre el mínimo y el máximo en array c ++

#include

using namespace std;

public void getMax_MinValue(int arr[])intmax,min;max= arr[0];min= arr[0];for(int i =0; i < sizeof(arr); i++)if(max< arr[i])max= arr[i];elseif(min> arr[i])min= arr[i];

    cout <<"Largest element : "<<max;
    cout <<"Smallest element : "<<min;

Ejemplo 3: c ++ max de array

cout <<" max element is: "<<*max_element(array , array + n)<< endl;

valoraciones y comentarios

Puedes añadir valor a nuestra información cooperando tu veteranía en las interpretaciones.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *