Javatpoint Logo
Javatpoint Logo

Q. Program to print the smallest element present in an array.

Explanation

In this program, we need to find out the smallest element present in the array. This can be achieved by maintaining a variable min which initially will hold the value of the first element. Loop through the array by comparing the value of min with elements of the array. If any of the element's value is less than min, store the value of the element in min.

Program to print the smallest element present in an array.

Consider above array. Initially, min will hold the value 25. In the 1st iteration, min will be compared with 11. Since 11 is less than 25. Min will hold the value 11. In a 2nd iteration, 11 will be compared with 7. Now, 7 is less than 11. So, min will take the value 7. Continue this process until the end of the array is reached. At last, min will hold the smallest value element in the array.

Algorithm

  1. Declare and initialize an array.
  2. Store first element in the variable min.
  3. Loop through the array from 0 to length of the array and compare the value of min with elements of the array.
  4. If any element is less than min, min will hold the value of that element.
  5. At last, min will represent the smallest element in the array.

Solution

Python

Output:

Smallest element present in given array: 7

C

Output:

Smallest element present in given array: 7

JAVA

Output:

Smallest element present in given array: 7

C#

Output:

Smallest element present in given array: 7

PHP

Output:

Smallest element present in given array: 7

Next Topic#





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA