diff options
| author | Anibal LopezBonilla <[email protected]> | 2022-10-12 22:07:15 -0700 |
|---|---|---|
| committer | Anibal LopezBonilla <[email protected]> | 2022-10-12 22:07:15 -0700 |
| commit | 6c28920247b055aa9a6e8f1696df04d939d9e1c2 (patch) | |
| tree | 8d2f490550fa78307c0430deedba6a2967977f5b | |
| parent | Output file added added Push 6 (diff) | |
| download | cst116-ch7-debugging-lopez-bonilla-6c28920247b055aa9a6e8f1696df04d939d9e1c2.tar.xz cst116-ch7-debugging-lopez-bonilla-6c28920247b055aa9a6e8f1696df04d939d9e1c2.zip | |
Added Pseudocode File Push 7
| -rw-r--r-- | Chapter 7 Debugging Pseudocode.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Chapter 7 Debugging Pseudocode.txt b/Chapter 7 Debugging Pseudocode.txt new file mode 100644 index 0000000..9870932 --- /dev/null +++ b/Chapter 7 Debugging Pseudocode.txt @@ -0,0 +1,18 @@ +Chapter 7 Pseudocode + +Set age to zero + +Display Enter your Age + +Input Age + +if the age == 1 + Display first birthday +else if the age is betwween the range of 12 and 19 + Display Teenager +else if the age is less than 12 + Display Child +else if the age is greater than 62 + Display Senior +else + Display Adult |