[Solved] How to write a pseudo Code [closed]


Pseudo code is just a way to express the intent of the program without being syntactically correct.

An example could be:

print "What is your name"
read input from user
print "Hello " + user input

Another example for withdrawing money from an ATM:

if the selected account's balance is greater than the requested amount
    reduce balance by requested amount
else
    display error message
end if

solved How to write a pseudo Code [closed]