aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt
diff options
context:
space:
mode:
authorLloyd Crawford <Lloyd Crawford@LAPTOP-7HJCDLE5>2022-10-05 16:23:01 -0700
committerLloyd Crawford <Lloyd Crawford@LAPTOP-7HJCDLE5>2022-10-05 16:23:29 -0700
commit4e249a7bc41ce2c596034e921c6660415c6d528a (patch)
treeac2d754f6c34bede8794e93ad6dfb5f0360c1d4c /CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt
parentSetting up GitHub Classroom Feedback (diff)
downloadcst116-ch6-debugging-19-ruin-4e249a7bc41ce2c596034e921c6660415c6d528a.tar.xz
cst116-ch6-debugging-19-ruin-4e249a7bc41ce2c596034e921c6660415c6d528a.zip
Here is my CH6 debug assignment!HEADmain
Diffstat (limited to 'CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt')
-rw-r--r--CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt b/CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt
new file mode 100644
index 0000000..f3da9f7
--- /dev/null
+++ b/CST116-Ch6-Debugging/CST116-CH6 Debug-results-Crawford.txt
@@ -0,0 +1,17 @@
+Enter temperature in Fahrenheit: 212
+212 degrees F = 0 degrees C
+
+C:\Users\Lloyd Crawford\source\repos\cst116-ch6-debugging-19-Ruin\CST116-Ch6-Debugging\x64\Debug\CST116-Ch6-Debugging.exe (process 24168) exited with code 0.
+To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
+Press any key to close this window . . .
+
+This is the code before proper debugging. It is due to a integer calculation of 5/9. This is fixed by making it 5.0/9.0
+
+Enter temperature in Fahrenheit: 212
+212 degrees F = 100 degrees C
+
+C:\Users\Lloyd Crawford\source\repos\cst116-ch6-debugging-19-Ruin\CST116-Ch6-Debugging\x64\Debug\CST116-Ch6-Debugging.exe (process 11948) exited with code 0.
+To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
+Press any key to close this window . . .
+
+This is the proper response once the code is fixed. \ No newline at end of file