Question #241960

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

Expert's answer

public class Main {
    public static void main(String[] args) {
        String firtsName = args[0];
        String dateOfBirth = args[1];
        int fiveDigits = Integer.parseInt(args[2]);
    }
}
LATEST TUTORIALS
APPROVED BY CLIENTS