diff options
| author | JacobAKnox <[email protected]> | 2021-10-16 10:21:21 -0700 |
|---|---|---|
| committer | JacobAKnox <[email protected]> | 2021-10-16 10:21:21 -0700 |
| commit | 77d94e0e4122f964f723bfbef837d3b2891056b1 (patch) | |
| tree | 54e9044a65930cedce551fe050eb2ba07cf187be /6c/pseudocode.txt | |
| parent | 6a exercises (diff) | |
| download | cst116-lab3-jacobaknox-master.tar.xz cst116-lab3-jacobaknox-master.zip | |
Diffstat (limited to '6c/pseudocode.txt')
| -rw-r--r-- | 6c/pseudocode.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/6c/pseudocode.txt b/6c/pseudocode.txt new file mode 100644 index 0000000..af45a35 --- /dev/null +++ b/6c/pseudocode.txt @@ -0,0 +1,9 @@ +Pseudocode: +get end number +f1 = 1 f2 = 0 +f = f1 + f2 +while (f <= end) + output f + f2 = f1 + f1 = f + f = f1 + f2
\ No newline at end of file |