diff options
| author | Kai <[email protected]> | 2022-10-12 15:46:34 -0700 |
|---|---|---|
| committer | Kai <[email protected]> | 2022-10-12 15:46:34 -0700 |
| commit | ea7620e8cea0aa973f23be186ff80f5066a80b28 (patch) | |
| tree | 69ae8c64fa138a3b588f327c486cbc8a2e57ee53 /Ch 5 Debugging Project | |
| parent | exploring. (diff) | |
| download | cst116-lab0-debugging-cobrakai2-ea7620e8cea0aa973f23be186ff80f5066a80b28.tar.xz cst116-lab0-debugging-cobrakai2-ea7620e8cea0aa973f23be186ff80f5066a80b28.zip | |
messign around
Diffstat (limited to 'Ch 5 Debugging Project')
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.cpp | 3 | ||||
| -rw-r--r-- | Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj | 8 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp index 6545e9b..d9b7740 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp @@ -24,7 +24,8 @@ * statement. Use the Step Over tool to take you to the next
* line.
* 10) Step over the next cout statement. Now look at the console
-* window. What was printed?
+* window. What was printed? You have $123.45
+Enter percent raise:
* 11) Select Stop Debugging either from the Debug menu or from your
* toolbar.
*
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj index b6da2fe..97611d8 100644 --- a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj +++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj @@ -29,26 +29,26 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
|