C++ Examples

C++ Program to Find Second lowest & Highest Numbers in Array

The Program in C++ Program to Find Second lowest and highest numbers in a given array is given below:

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
    int n;
    cout << "Hello Codeauri Family,Enter the size of the array here to find out the second lowest and second highest number: ";
    cin >> n;

    int arr[n];
    cout << "Well,Enter the elements of the array: ";
    for (int i = 0; i < n; i++) {
        cin >> arr[i];
    }

    sort(arr, arr + n);

    cout << "Okay, the Second lowest number: " << arr[1] << endl;
    cout << "Okay, the Second highest number: " << arr[n - 2] << endl;

    return 0;
}

Output:

Hello Codeauri Family,Enter the size of the array here to find out the second lowest and second highest number: 3
Well,Enter the elements of the array: 45
13
49
Okay, the Second lowest number: 45
Okay, the Second highest number: 45

Pro-Tips💡

This program prompts the user to enter the size of the array and then the elements of the array.

After sorting the array using the sort function from the algorithm library, the second lowest

and highest numbers are displayed by printing arr[1] and arr[n - 2], respectively.

Learn C-Sharp ↗

C-sharp covers every topic to learn about C-Sharp thoroughly.

Learn C Programming ↗

C-Programming covers every topic to learn about C-Sharp thoroughly.

Learn C++ Programming↗

C++ covers every topic to learn about C-Sharp thoroughly.

Codeauri is Code Learning Hub and Community for every Coder to learn Coding by navigating Structurally from Basic Programming to Front-End Development, Back-End Development to Database, and many more.

Related Posts

C# Program to Find Sum of Rows & Columns of a Matrix

The Program in C# Program to Find Sum of Rows & Columns of a Matrix is given below: Output: Hello Codeauri Family,enter the number of rows and columns…

C# Program to Calculate Determinant of Given Matrix

The Program in C# Program to Calculate Determinant of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns of the matrix…

C# Program to Find Sum of right Diagonals of a Matrix

The Program in C# Program to Find Sum of right Diagonals of a Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns…

C# Program to Find Transpose of Given Matrix

The Program in C# Program to Find Transpose of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns in the matrix:22Enter…

C# Program for Multiplication of two square Matrices

The Program in C# Program for Multiplication of two square Matrices is given below: Output: Hello Codeauri Family, enter the number of rows/columns in the matrices:2Enter the elements…

C# Program to Delete Element at Desired position From Array

The Program in C# Program to Delete Element at Desired position From Array is given below: Output: Hello Codeauri Family, enter the number of elements in the array:4Enter…

Leave a Reply

Your email address will not be published. Required fields are marked *

Your Journey into Code Begins Now: Discover the Wonders of Basic Programming

X