-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path061-Read-Array-Elements.java
More file actions
78 lines (60 loc) · 2.3 KB
/
Copy path061-Read-Array-Elements.java
File metadata and controls
78 lines (60 loc) · 2.3 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
/*
* ============================================================================
* Program Name : Read Array Elements
* File Name : 061-Read-Array-Elements.java
* Class Name : ReadArrayElements
*
* Description:
* This program accepts the size of an array and reads the array
* elements from the user using the Scanner class.
*
* Objective:
* - Understand user input using the Scanner class.
* - Learn how to read elements into a one-dimensional array.
* - Store user input in an array using a loop.
*
* Author : Shaik Mahaboob Basha
* Repository : 01-Core-Java
* Folder : 08-Java-Programs
* ============================================================================
*/
import java.util.Scanner;
public class ReadArrayElements {
// 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 and store each array element.
for (int i = 0; i < size; i++) {
// Read the current element from the user.
array[i] = scanner.nextInt();
}
// Display a success message.
System.out.println("Array elements have been read successfully.");
// Example Output:
// Enter the Size of the Array: 5
// Enter 5 Array Elements:
// 10
// 20
// 30
// 40
// 50
// Array elements have been read successfully.
}
// Close the Scanner object to release system resources.
scanner.close();
}
}