diff options
Diffstat (limited to 'CST116-Ch6-Debugging')
| -rw-r--r-- | CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/771cd8c0-0b9b-4874-8340-d71ada271e0d.vsidx | bin | 13243 -> 0 bytes | |||
| -rw-r--r-- | CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo | bin | 26624 -> 39936 bytes | |||
| -rw-r--r-- | CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db | bin | 16441344 -> 16441344 bytes | |||
| -rw-r--r-- | CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/89d120d40c25389b/CST116-CH6-DEBUGGING.ipch | bin | 40501248 -> 40501248 bytes | |||
| -rw-r--r-- | CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj | 3 | ||||
| -rw-r--r-- | CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj.filters | 3 | ||||
| -rw-r--r-- | CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt | 9 |
7 files changed, 15 insertions, 0 deletions
diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/771cd8c0-0b9b-4874-8340-d71ada271e0d.vsidx b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/771cd8c0-0b9b-4874-8340-d71ada271e0d.vsidx Binary files differdeleted file mode 100644 index 4066506..0000000 --- a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/FileContentIndex/771cd8c0-0b9b-4874-8340-d71ada271e0d.vsidx +++ /dev/null diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo Binary files differindex 24ace40..139ca3d 100644 --- a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/.suo diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db Binary files differindex 3b43600..e5353c4 100644 --- a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/Browse.VC.db diff --git a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/89d120d40c25389b/CST116-CH6-DEBUGGING.ipch b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/89d120d40c25389b/CST116-CH6-DEBUGGING.ipch Binary files differindex 85d65ae..f541f63 100644 --- a/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/89d120d40c25389b/CST116-CH6-DEBUGGING.ipch +++ b/CST116-Ch6-Debugging/.vs/CST116-Ch6-Debugging/v17/ipch/AutoPCH/89d120d40c25389b/CST116-CH6-DEBUGGING.ipch diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj index 778451a..698c6c4 100644 --- a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj +++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj @@ -129,6 +129,9 @@ <ItemGroup>
<ClCompile Include="CST116-Ch6-Debugging.cpp" />
</ItemGroup>
+ <ItemGroup>
+ <Text Include="CST116-Ch6-Psuedo-code.txt" />
+ </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj.filters b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj.filters index 187ab51..f1aee52 100644 --- a/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj.filters +++ b/CST116-Ch6-Debugging/CST116-Ch6-Debugging.vcxproj.filters @@ -19,4 +19,7 @@ <Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
+ <ItemGroup>
+ <Text Include="CST116-Ch6-Psuedo-code.txt" />
+ </ItemGroup>
</Project>
\ No newline at end of file diff --git a/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt b/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt new file mode 100644 index 0000000..0a6607d --- /dev/null +++ b/CST116-Ch6-Debugging/CST116-Ch6-Psuedo-code.txt @@ -0,0 +1,9 @@ +set fahrenheit to 0 +set celcius to 0 + +print "Enter tempeartue in Fahrenheit: " +input into fahrenheit + +set celcius = 5 / 9 * (fahrenheit - 32) + +print fahrenheit + " degrees F = " + celcius + " degrees C"
\ No newline at end of file |