Answer:
1. Start
2. Enter Elapsed time
3. Let T = elapsedTime
4. minute = T / 60
5. second = T % 60
6. Display minute "minutes and" second "seconds".
7. End
Explanation:
First the elapsed time is entered and it is assigned to T. Next, we find the number of minute by dividing the elapsedTime with 60 (60 seconds make a minute). Then we get the number of second by finding the remainder when the elapsedTime modulus 60 give us the result.
Finally, we display our result.