Pseudocode | Sololearn: Learn to code for FREE!
0

Pseudocode

Which course should I take to learn pseudocode

7th Jun 2024, 9:36 PM
Tashfia Ibnat Khan
Tashfia Ibnat Khan - avatar
2 odpowiedzi
+ 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
7th Jun 2024, 9:49 PM
Ausgrindtube
Ausgrindtube - avatar
+ 3
Your basically making the programming version of your code readable but using “code” terms.
8th Jun 2024, 12:11 AM
Junior
Junior - avatar