Using a switch statement: [2 points] If the employee type is P or p, then displa
ID: 3891324 • Letter: U
Question
Using a switch statement: [2 points]
If the employee type is P or p, then display "Part- time employee" on the screen If the employee type is F or f, then display "Full-time employee" on the screen If the employee type is T or t, then display "Temporary employee" on the screen If the employee is none of the above, then display "Invalid employee type" on the screen
2. Using an single individual distinct if statement (not a nested if): [1 point]
If the employee makes $50 an hour or more, and is also a full-time employee, print out to the screen "You must be a Java programmer!"
3. Using a single if-else-if statement: [2 points]
If the employee type is part-time, and the hours worked is 35 hours or more, then print out to the screen "You worked like a Full-time employee"
If the employee type is full-time, and the hours worked is less than 25, then print out to the screen "Are you sure you're not a part-time employee?"
Else print out to the screen "Have a nice day!"
4. Using a while loop structure: [2 points] If the total hours worked is less than 0 or greater than 280, then print out "That's not possible, please try again!" to the screen. Prompt the user to enter the total hours again (inside the loop) Allow up to 3 total invalid attempts for the user to enter the correct number of hours. After the 3rd attempt, print out "You are Fired!" and exit the program (or start program over)
5. Using a do-while loop structure: [2 points]
After the program completes, ask the user "Do you want to start the program over again? (Enter Yes or No)". If the user enters "Yes" as a String literal (in any case meaning they can enter Yes, yes, yeS, yEs, YES, or YEs and it should still work), then the program should start over again from the beginning 6. Write very good comments above all of the 5 parts above, and also a block style comment at the very top of your program with your name in it. [1 point]
Explanation / Answer
(1)
//Assuming for employee type
char empType = 'F';
switch(empType) {
//Part time
case 'p':
case 'P': System.out.println("Part-time employee"); break;
//Full Time
case 'f':
case 'F': System.out.println("Full-time employee"); break;
//Temporary
case 't':
case 'T': System.out.println("Temporary employee"); break;
default: System.out.println("Invalid employee type"); break;
}
______________________________________________________________________________________
(2)
Assume variable pay holds the value "amount per hour"
//Checking for hourly pay greater than 50 and Full time employee
if(pay >= 50 && (empType == 'f' || empType == 'F')) {
System.out.println("You must be a Java programmer!");
}
______________________________________________________________________________________
(3)
//Part time employee and hoursWorked greater than or equal to 35
if( (empType == 'p' || empType == 'P') && hoursWorked >= 35) {
System.out.println("You worked like a Full-time employee");
}
//Full time employee and hoursWorked less than 25
else if( (empType == 'f' || empType == 'F') && hoursWorked < 25) {
System.out.println("Are you sure you're not a part-time employee?");
}
//In other cases
else {
System.out.println("Have a nice day!");
}
______________________________________________________________________________________
(4)
//Initially set to true
boolean loop = true;
//Variable for counting
int cnt=0;
//Scanner variable for reading input from user
Scanner reader = new Scanner(System.in);
//Loop till three attempts
while(cnt < 3 && loop == true) {
//Reading input from user
System.out.print("Input total hours: ");
hrs = reader.nextInt();
//Checking value
if(hrs < 0 || hrs > 280) {
System.out.println("That's not possible, please try again!");
//Incrementing count
cnt = cnt + 1;
//Checking count
if(cnt == 3 && loop == false) {
System.out.println("You are Fired!");
loop = false;
}
}
else {
loop = false;
}
}
______________________________________________________________________________________
(5)
//Scanner variable for reading input from user
Scanner reader = new Scanner(System.in);
//Do-While loop
do {
//Prompting user
System.out.println("Do you want to start the program over again? (Enter Yes or No): ");
ch = reader.nextLine(); //Reading input
}while(ch.equalsIgnoreCase("yes"));
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.