A pseudocode for a software program that allows this user to enter a value for hours worked in a day is as follows:
START
input hours_WorkedDay
hours_WorkedWeek = hours_WorkedDay * 5
hours_WorkedYear = hours_WorkedDay * 252
output hours_WorkedWeek
output hours_WorkedYear
STOP
<h3>What is an algorithm?</h3>
An algorithm can be defined as a standard formula which comprises a set of finite steps and instructions that must be executed by a software program, in order to proffer solutions to a problem on a computer, under appropriate conditions.
<h3>What is a pseudocode?</h3>
A pseudocode can be defined as a description of the steps that are contained in an algorithm, especially through the use of a plain (natural) language.
A pseudocode for a software program that allows this user to enter a value for hours worked in a day is as follows:
START
input hours_WorkedDay
hours_WorkedWeek = hours_WorkedDay * 5
hours_WorkedYear = hours_WorkedDay * 252
output hours_WorkedWeek
output hours_WorkedYear
STOP
Read more on pseudocode here: brainly.com/question/13208346
#SPJ1
Complete Question:
Write pseudocode to represent the logic of a program that allows the user to enter a value for hours worked in a day. The program calculates the hours worked in a five-day week and the hours worked in a 252-day work year. The program outputs all the results.