122k views
1 vote
#Prompt users to enter first, last name, a test score, greater than or less than to display create selection structures conditional statements, using if, else, else if and display the results on screen. This program will determine if an individual is admitted into college based on ACT scores.

Practice Program
Use Sample_LAB4.pl as a reference. This program prompts users to execute certain statements only if some condition evaluates to "true" or "false"
Instructions for LAB4
1. Write a program that prompts the user for their test scores.
2. Use variables $num.
3. Prompt the user to enter a number greater than 19.
4. Prompt the user to enter a number less than 19.
5. Display "You are admitted to college"
6. Display You are not admitted to college"
7. Write pseudocode to show the flow of your program (begin each line with #).

User Tristate
by
7.6k points

1 Answer

1 vote

Final answer:

To create a program that determines if an individual is admitted into college based on ACT scores, you can use selection structures and conditional statements such as if, else, and else if.

Step-by-step explanation:

To create a program that determines if an individual is admitted into college based on ACT scores, you can use selection structures and conditional statements such as if, else, and else if. Here is an example of how the program could be implemented:

  1. Prompt the user to enter their test score using the variable $num.
  2. Use an if statement to check if the test score is greater than 19. If it is, display the message 'You are admitted to college.'
  3. Use an else if statement to check if the test score is less than 19. If it is, display the message 'You are not admitted to college.'
  4. End the program.

Here is an example pseudocode showing the flow of the program:

# Prompt user for test score
$num = prompt('Enter your test score:')

# Check if score is greater than 19
if $num > 19 then
display 'You are admitted to college'
# Check if score is less than 19
else if $num < 19 then
display 'You are not admitted to college'
# End the program
end
User Liabru
by
7.3k points