InClass Exercise Task01 (V1.0) Requested files: Inclass_Task01.java ( Download) Type of work: Individual work The Namibia University of Science and Technology would like to introduce an automated student number and email generation system. The system takes into consideration the following: a) To generate the student number it takes three letters(the first, middle and last letter) of the student’s surname and adds it to the first three letters from the first name, then finally adds a three digit postfix number. b) To generate the email is quite easy it just takes the first letter from the first name and adds it to the surname , then it adds the @students.nust.na postfix Your task is to create a program that can achieve the above requirements when given the students surname, first name and three digit postfix through CMD arguements Sample run 1: java InClass01_task01 Kandjeke Jenifer 003 Output: Good day Jenifer welcome to NUST. Your email address is : jkandjeke@students.nust.na Student number : KJEJEN003 Sample run 2: java InClass01_task01 Kavezemba Terry 001 Output: Good day Terry welcome to NUST. Your email address is : tkavezemba@students.nust.na Student number : KZATER001
InClass Exercise Task01 (V1.0)
Requested files: Inclass_Task01.java ( Download)
Type of work: Individual work
The Namibia University of Science and Technology would like to introduce an automated student number and email generation system. The system takes into consideration the following:
a) To generate the student number it takes three letters(the first, middle and last letter) of the student’s surname and adds it to the first three letters from the first name, then finally adds a three digit postfix number.
b) To generate the email is quite easy it just takes the first letter from the first name and adds it to the surname , then it adds the @students.nust.na postfix
Your task is to create a program that can achieve the above requirements when given the students surname, first name and three digit postfix through CMD arguements
Sample run 1:
java InClass01_task01 Kandjeke Jenifer 003
Output: Good day Jenifer welcome to NUST.
Your email address is : jkandjeke@students.nust.na
Student number : KJEJEN003
Sample run 2:
java InClass01_task01 Kavezemba Terry 001
Output: Good day Terry welcome to NUST.
Your email address is : tkavezemba@students.nust.na
Student number : KZATER001
Step by step
Solved in 2 steps with 1 images