Find elements

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.

  • array declaration
  • Essential variable declaration
  • Get input from the user for array length
  • Get input from the user for array elements
  • loop for largest and smallest value
  • Display result on the screen

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
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

C# inverted full pyramid star pattern

C# inverted full pyramid star pattern In this article, we will discuss the concept of…

3 weeks ago

C# Full Pyramid star pattern program

C# Full Pyramid star pattern program In this article, we will discuss the concept of…

1 month ago

Program to count vowels,consonants,words, characters and space in Java

Program to count vowels, consonants, words, characters and space in Java In this article, we…

1 month ago

How to print multiplication table using Array in C++ language

How to print multiplication table using Array in C++ language In this post, we will…

1 month ago

C Program to multiplication table using Array

C Program to multiplication table using Array In this tutorial , we will discuss about…

2 months ago

Java program to check odd or even using recursion

Java program to check odd or even using recursion In this tutorial, we discuss a…

2 months ago