Draw a pseudo code to represent the logic of a program that allows the user to enter five values. The program prints the modulus(%) of the five values

If we're talking real numbers, and by modulus you mean the absolute value, then

for i=1..5
print "value; "
read val[i]
next i
for i=1..5
v = val[i]
print "The modulus of ",val[i]," = ", (v < 0) ? -v : v
next i