Your task is to create a program that can achieve the above requirements when given the person's first name, date of birth(format YYYY-MM-DD) and five-digit postfix through CMD arguements
public class Main {
public static void main(String[] args) {
String firtsName = args[0];
String dateOfBirth = args[1];
int fiveDigits = Integer.parseInt(args[2]);
}
}
Comments
Leave a comment