0
Pseudocode
Which course should I take to learn pseudocode
2 Réponses
+ 3
I don't know if any course goes into much depth of pseudocode.
It's basically an in-between "language" from writing out normal steps of an instruction (say when you're telling a friend how to do something) and writing code/programming.
E.g.
-Natural language
Take 2 numbers
Add the numbers together
Multiply the result by 3
Tell friend the answer...
-Pseudocode
Accept input of integers x, y
x plus y equals firstSum
firstSum times 3
Output finalResult...
-Programming
x = int(input())
y = int(input())
....and so on
+ 3
Your basically making the programming version of your code readable but using “code” terms.