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.
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