-
Notifications
You must be signed in to change notification settings - Fork 1
Pseudocode
Zhamri Che Ani edited this page Jan 6, 2021
·
2 revisions
- http://users.csc.calpoly.edu/~jdalbey/SWE/pdl_std.html
- https://en.wikibooks.org/wiki/GCSE_Computer_Science/Pseudocode
- https://en.wikiversity.org/wiki/Pseudocode/Gaddis_Pseudocode
- https://www.unf.edu/~broggio/cop2221/2221pseu.htm
- https://study.com/academy/lesson/pseudocode-definition-examples-quiz.html
- http://guyhaas.com/bfoit/itp/Pseudocode.html
- https://docs.google.com/document/d/14x2S42cQ4J20uKRc_2LxrM-u39LE6j3M5FVCdQx5Jg8/edit
- https://github.com/Ensembl/postgap/wiki/algorithm-pseudo-code
Output: areaOfTriangle
Input: width, height
1: procedure calculate_AreaOfTriangle (width, height)
2: areaOfTriangle = (width x height)/2
3: return areaOfTriangle
4: end procedure
YouTube Channel --> MyNotes
Topic 3: Numerical Computation & Expression
Topic 4: Selection Control Structures
Topic 7: Arrays
Case Study