Python 3 pseudocode Do-While loop -


i need design do-while loop asks user enter 2 numbers. numbers should added , sum displayed. loop should ask user whether or wishes perform operation again. if so, loop should repeat; other-wise should terminate.

this needs done in python pseudocode, makes absolutely no sense me because why not use python in first place?

thanks

while true     ask user input1     ask user input2     display input1 + input2     ask user if want go again     if no exit 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -