Site icon Codeforcoding

Cpp program to display smallest and largest number in Array

Cpp program to display smallest and largest number in Array

In this tutorial, we will discuss the  concept of Cpp program to display smallest and largest number in Array.

In this topic, we will learn how to find the smallest and largest elements of array elements in Cpp programming language

This program gets “n” number of elements and Enter the elements of the array as input from the user. then, this program finds and displays the smallest and largest elements from the array using for loops.

In this programs, we can see step by step procedure for completion of the program.

Find smallest and largest elements from integer Array

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    int arr[30]; //array declaration
    int length,i,min,max;//essential variable declaration
    cout << "Enter the length of the array: ";
    cin>>length;
    for(i=0; i<length; i++){
        cout<<"Enter elements "<<i+1<<" :";//enter elements for array
        cin>>arr[i];//store the elements in array from the user
    }
    min=arr[0];//assume the first elements as smallest number
    max=arr[0];//assume the first elements as largest number
    for(i=0; i<length; i++){
    if(min>arr[i]){
        min=arr[i];
    }
    if(max<arr[i]){
        max=arr[i];
    }
    }
    cout<<"\nLargest elements is: "<<max;
    cout<<"\nSmallest elements is: "<<min;
    getch();//display result on the screen
    return 0;
}

When the above code is compiled and executed, it produces the following results

Enter the length of the array: 6
Enter element 1: 65
Enter element 2: 35
Enter element 3: 12
Enter element 4: 90
Enter element 5: 76
Enter element 6: 43

Largest elements is: 90
Smallest element is: 12

Find smallest and largest elements from float Array

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    float arr[30],min,max; //array declaration
    int length,i;;//essential variable declaration
    cout << "Enter the length of the array: ";
    cin>>length;
    for(i=0; i<length; i++){
        cout<<"Enter elements "<<i+1<<": ";//enter elements for array
        cin>>arr[i];//store the elements in array from the user }
    }
    min=arr[0];//assume the first elements as smallest number
    min=arr[0];//assume the first elements as largest number
    for(i=0; i<length; i++){
    if(min>arr[i]){
        min=arr[i];
    }
    if(max<arr[i]){
        max=arr[i];
    }
    }
    cout<<"\nSmallest elements is: "<<min;
    cout<<"\nLargest elements is: "<<max;
    getch();//display result on the screen
    return 0;
}

When the above code is compiled and executed, it produces the following results

Enter the length of the array: 6
Enter element 1: 2.6
Enter element 2: 5.6
Enter element 3: 4.3
Enter element 4: 9.6
Enter element 5: 1.2
Enter element 6: 5.3

Smallest element is: 1.2
Largest element is: 9.6

Similar post

C code to smallest among three numbers

C++ code to smallest among three numbers

Python code to smallest among three numbers

 

Java code to find smallest of three numbers using method

C code to smallest among three numbers using function

C++ code to smallest among three numbers using function

Python code to smallest among three numbers using function

 

Java code to find smallest of three numbers using ternary operator

C code to smallest among three numbers using ternary operator

C++ code to smallest among three numbers using ternary operator

 

Suggested for you

Addition of two numbers in Java

Addition of two numbers in C

Addition of two numbers in C++

Addition of two numbers in Python

Addition of two numbers in C#

Addition of two numbers in PHP

Addition of two numbers in JavaScript

 

Sum of two numbers in Java using method

Sum of two numbers in C++ using function

Sum of two numbers in Python using function

 

C program to add two numbers without using arithmetic operators

C++ program to add two numbers without using arithmetic operators

Python program to add two numbers without using arithmetic operators

 

For loop in C++ language

While loop in C++language

The function in C++ language

 

Operator in C language

Function in C language

Data type in C language

Operator in C++ language

Data types  in C++ language

 

Single dimension Array in C++ language

If statements in C++

Data type in C++ programming language

C program to find smallest number in an array
Cpp program to display smallest number of an Array
Exit mobile version