diff options
| author | Taylor Rogers <[email protected]> | 2022-10-08 09:21:17 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-10-08 09:21:17 -0700 |
| commit | 9e8c66d6e4b20177c3690cb0c5a5a95f64485906 (patch) | |
| tree | 22cad4ff3560a1622533262920350f3dc4ab3599 /CST116-Ch6-Debugging-Rogers | |
| parent | Broke program, fixed it (diff) | |
| download | cst116-ch6-debugging-taylorrog-main.tar.xz cst116-ch6-debugging-taylorrog-main.zip | |
Diffstat (limited to 'CST116-Ch6-Debugging-Rogers')
| -rw-r--r-- | CST116-Ch6-Debugging-Rogers/CST116-Ch6-Pseudo-code-Rogers.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CST116-Ch6-Debugging-Rogers/CST116-Ch6-Pseudo-code-Rogers.txt b/CST116-Ch6-Debugging-Rogers/CST116-Ch6-Pseudo-code-Rogers.txt index 30c1680..f5feba4 100644 --- a/CST116-Ch6-Debugging-Rogers/CST116-Ch6-Pseudo-code-Rogers.txt +++ b/CST116-Ch6-Debugging-Rogers/CST116-Ch6-Pseudo-code-Rogers.txt @@ -1,4 +1,5 @@ 1. degF = input 2. print "Enter temperature in fahrenheit: [input]" 3. degC = 5.0 / 9.0 * (degF - 32) -4. print "[degF] degrees "
\ No newline at end of file +4. print "[degF] degrees F = [degC] degrees C" +5. end
\ No newline at end of file |