diff options
| author | alexandra-apetroaei <andra@MSI> | 2022-10-07 12:09:19 -0800 |
|---|---|---|
| committer | alexandra-apetroaei <andra@MSI> | 2022-10-07 12:09:19 -0800 |
| commit | a74e54e679563db8943989c218f9a1fbdad92e5b (patch) | |
| tree | eefccced63404cbb3ed0427fff1f9ab67a0299da | |
| parent | changes two (diff) | |
| download | cst116-ch7-debugging-alexandra-apetroaei-a74e54e679563db8943989c218f9a1fbdad92e5b.tar.xz cst116-ch7-debugging-alexandra-apetroaei-a74e54e679563db8943989c218f9a1fbdad92e5b.zip | |
added psuedo-code
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj | 3 | ||||
| -rw-r--r-- | CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters | 3 | ||||
| -rw-r--r-- | CST116-Ch7-Debugging/Chapter 7 psuedo-chart.txt | 6 |
3 files changed, 12 insertions, 0 deletions
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj index 45b2819..f8b11cd 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj @@ -129,6 +129,9 @@ <ItemGroup>
<ClCompile Include="CST116-Ch7-Debugging.cpp" />
</ItemGroup>
+ <ItemGroup>
+ <Text Include="Chapter 7 psuedo-chart.txt" />
+ </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
diff --git a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters index a245946..9133058 100644 --- a/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters +++ b/CST116-Ch7-Debugging/CST116-Ch7-Debugging.vcxproj.filters @@ -19,4 +19,7 @@ <Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
+ <ItemGroup>
+ <Text Include="Chapter 7 psuedo-chart.txt" />
+ </ItemGroup>
</Project>
\ No newline at end of file diff --git a/CST116-Ch7-Debugging/Chapter 7 psuedo-chart.txt b/CST116-Ch7-Debugging/Chapter 7 psuedo-chart.txt new file mode 100644 index 0000000..bf81010 --- /dev/null +++ b/CST116-Ch7-Debugging/Chapter 7 psuedo-chart.txt @@ -0,0 +1,6 @@ +set interger age = 0 +make all variables match the outcome +use if else statements + +enter age variable +read output message
\ No newline at end of file |