-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLineInput_Q1.java
31 lines (27 loc) · 1.04 KB
/
CommandLineInput_Q1.java
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
/*
1. Taking input from Command line and convert objects into primitive data type:
Write a java program to take input as a command line argument. Your name, course, university rollno and semester. Display the information.
Name: University
RollNo: Course:
Semester:
*/
public class CommandLineInput_Q1 {
public static void main(String[] args) {
// Check if all required arguments are provided
if (args.length < 4) {
System.out.println("Please provide all required arguments:");
System.out.println("java CommandLineInput_Q1 <name> <rollno> <course> <semester>");
return;
}
// Get command line arguments
String name = args[0];
String rollNo = args[1];
String course = args[2];
String semester = args[3];
// Display the information
System.out.println("Name: " + name);
System.out.println("RollNo: " + rollNo);
System.out.println("Course: " + course);
System.out.println(" Semester: " + semester);
}
}