Write the pseudocode for a program that will process attendance records of CA students. The students attend college five days a week. Input values are the student’s name, number, and the time in and time out for each day of the week (i.e. five different times in and times out must be input). If a student attends college more than 36 hours in a week, a congratulatory message is printed. If a student attends college less than 30 hours in a week, a warning message is printed. The output for each student is the name, hours, and the appropriate attendance message. Processing continues until a student number of zero is input. Assume that students always check in and out on the hour. Therefore, timeIn and timeOut will be integer variables (i.e. they represent whole hours, and minutes are ignored).

Respuesta :

Using the knowledge of pseudocodes it will be possible to write a code that calculates the amount of hours worked and giving warnings about it.

Writing a pseudocode we have that:

while

if number == 0

break

hours =0

for i =1 to 5

hours = hours + time_out[ i ] - time_in[ i ]

If hours >36 :

print ( "Name is " ,name)

print( "No of hours are ",hours)

print("Congratulaion! Your working hours are more than 36")

If hours <30 : #

print ( "Name is " ,name)

print( "No of hours are ",hours)

print("Warning !!!")

End loop

See more about pseudocode at brainly.com/question/13208346

#SPJ1

Ver imagen lhmarianateixeira