diff options
| author | Joe Traver <[email protected]> | 2022-10-11 21:55:13 -0700 |
|---|---|---|
| committer | Joe Traver <[email protected]> | 2022-10-11 21:55:13 -0700 |
| commit | f131666965724f77d33dc06db5b95552a0822925 (patch) | |
| tree | fc5ea794e40d42ee84cd85519a8b5852b3be2c57 /CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt | |
| parent | Added psudo code (diff) | |
| download | cst116-ch6-debugging-joetraver30-f131666965724f77d33dc06db5b95552a0822925.tar.xz cst116-ch6-debugging-joetraver30-f131666965724f77d33dc06db5b95552a0822925.zip | |
Final touches
Diffstat (limited to 'CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt')
| -rw-r--r-- | CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt new file mode 100644 index 0000000..594b9db --- /dev/null +++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging-psudo-code.txt @@ -0,0 +1,17 @@ +int_var + fahrenheit = 0 + celcius = 0 + +display + "Enter temperature in fahrenheit" +input_var + fahrenheit + +celcius to fahrenehit calculation + caelcuis = 5/9 * (fahrenheit - 32) + +display + output_var fahrenheit "degrees F =" + output_var celcous "degrees C" + +End
\ No newline at end of file |