aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp
diff options
context:
space:
mode:
authorHannah Wu <[email protected]>2022-10-11 22:06:23 -0700
committerHannah Wu <[email protected]>2022-10-11 22:06:23 -0700
commitf837997979477aaaad8ca56c6d1da217c735d147 (patch)
tree5354c2b19ca8a586ef198a0c32bc0299be392845 /CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp
parentFixed main file. Added psuedocode file. Added output text file. (diff)
downloadcst116-ch6-debugging-wu-f837997979477aaaad8ca56c6d1da217c735d147.tar.xz
cst116-ch6-debugging-wu-f837997979477aaaad8ca56c6d1da217c735d147.zip
Main file updateHEADmain
Diffstat (limited to 'CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp')
-rw-r--r--CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp
index 497e2f8..a4cede0 100644
--- a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp
+++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.cpp
@@ -51,7 +51,7 @@ int main()
// Breakpoint 1
// Put a breakpoint on the following line
- celcius = 5 / 9 * fahrenheit - 32;
+ celcius = 5.0 / 9.0 * (fahrenheit - 32);
cout << fahrenheit << " degrees F = "
<< celcius << " degrees C" << endl;