-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path066-Smallest-Element-in-Array.java
More file actions
110 lines (81 loc) · 3.17 KB
/
Copy path066-Smallest-Element-in-Array.java
File metadata and controls
110 lines (81 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
* ============================================================================
* Program Name : Smallest Element in Array
* File Name : 066-Smallest-Element-in-Array.java
* Class Name : SmallestElementInArray
*
* Description:
* This program accepts the size and elements of a one-dimensional array
* from the user and finds the smallest element in the array.
*
* Objective:
* - Understand user input using the Scanner class.
* - Learn how to traverse a one-dimensional array.
* - Find the smallest element using a loop.
*
* Author : Shaik Mahaboob Basha
* Repository : 01-Core-Java
* Folder : 08-Java-Programs
* ============================================================================
*/
import java.util.Scanner;
public class SmallestElementInArray {
// The main() method is the entry point of every Java application.
public static void main(String[] args) {
// Create a Scanner object to read input from the keyboard.
Scanner scanner = new Scanner(System.in);
// Ask the user to enter the size of the array.
System.out.print("Enter the Size of the Array: ");
// Read the size entered by the user.
int size = scanner.nextInt();
// Check whether the entered size is valid.
if (size <= 0) {
// Display an error message.
System.out.println("Please enter a positive array size.");
} else {
// Declare a one-dimensional integer array.
int[] array = new int[size];
// Ask the user to enter the array elements.
System.out.println("Enter " + size + " Array Elements:");
// Read all array elements.
for (int i = 0; i < size; i++) {
// Store the current element in the array.
array[i] = scanner.nextInt();
}
// Assume the first element is the smallest.
int smallest = array[0];
// Traverse the remaining elements of the array.
for (int i = 1; i < size; i++) {
// Compare the current element with the smallest element.
if (array[i] < smallest) {
// Update the smallest element.
smallest = array[i];
}
}
// Display the array elements.
System.out.println("Array Elements:");
// Traverse the array and print each element.
for (int i = 0; i < size; i++) {
// Print the current array element.
System.out.print(array[i] + " ");
}
// Move the cursor to the next line.
System.out.println();
// Display the smallest element.
System.out.println("Smallest Element: " + smallest);
// Example Output:
// Enter the Size of the Array: 5
// Enter 5 Array Elements:
// 15
// 45
// 20
// 80
// 10
// Array Elements:
// 15 45 20 80 10
// Smallest Element: 10
}
// Close the Scanner object to release system resources.
scanner.close();
}
}