diff options
| author | KaedenGrubb <[email protected]> | 2021-12-08 19:42:52 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-08 19:42:52 -0800 |
| commit | d6cb26370fd43461d372b064970cd1c56cf475ed (patch) | |
| tree | 3e4b7cf3ff08489f7a2fe42d6a8f00dfd5afb11a | |
| parent | Add online IDE url (diff) | |
| download | cst116-lab3-kaedengrubb-d6cb26370fd43461d372b064970cd1c56cf475ed.tar.xz cst116-lab3-kaedengrubb-d6cb26370fd43461d372b064970cd1c56cf475ed.zip | |
Add files via upload
100 files changed, 1187 insertions, 0 deletions
diff --git a/7.10 Exercise 2/7.10 Exercise 2.sln b/7.10 Exercise 2/7.10 Exercise 2.sln new file mode 100644 index 0000000..25e43d9 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2.sln @@ -0,0 +1,31 @@ +
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31729.503
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "7.10 Exercise 2", "7.10 Exercise 2\7.10 Exercise 2.vcxproj", "{DA274811-3381-47A9-A6F7-F4910EDB92FC}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Debug|x64.ActiveCfg = Debug|x64
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Debug|x64.Build.0 = Debug|x64
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Debug|x86.ActiveCfg = Debug|Win32
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Debug|x86.Build.0 = Debug|Win32
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Release|x64.ActiveCfg = Release|x64
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Release|x64.Build.0 = Release|x64
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Release|x86.ActiveCfg = Release|Win32
+ {DA274811-3381-47A9-A6F7-F4910EDB92FC}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {74882333-8601-4D11-B975-30BED36BEB83}
+ EndGlobalSection
+EndGlobal
diff --git a/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.cpp b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.cpp new file mode 100644 index 0000000..4b68df5 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.cpp @@ -0,0 +1,26 @@ +
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ float Loan;
+ float Interest;
+ float Fees = 20;
+ cout << "Enter loan amount. ($100-$1000)" << endl;
+ cin >> Loan;
+ cout << "Enter interest rate. (1%-18%)" << endl;
+ cin >> Interest;
+ if (Loan > 1000)
+ cout << "Invalid loan input.";
+ else if (Loan >= 500 && Loan <= 1000)
+ float Fees = 25;
+ else if (Loan < 100)
+ cout << "Invalid loan input.";
+ if (Interest > 18)
+ cout << "Invalid interest input.";
+ else if (Interest < 1)
+ cout << "Invalid interest input.";
+ float totalcost = Loan + Loan * Interest * 0.01 + Fees;
+ cout << "Your total cost is " << totalcost << ".\n";
+}
diff --git a/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj new file mode 100644 index 0000000..accb1cd --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <VCProjectVersion>16.0</VCProjectVersion>
+ <Keyword>Win32Proj</Keyword>
+ <ProjectGuid>{da274811-3381-47a9-a6f7-f4910edb92fc}</ProjectGuid>
+ <RootNamespace>My710Exercise2</RootNamespace>
+ <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</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>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="Shared">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="7.10 Exercise 2.cpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj.filters b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj.filters new file mode 100644 index 0000000..60cb0a9 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj.filters @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="7.10 Exercise 2.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj.user b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/7.10 Exercise 2.vcxproj.user @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup />
+</Project>
\ No newline at end of file diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.exe.recipe b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.exe.recipe new file mode 100644 index 0000000..4ba0171 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\Kaeden Grubb\Desktop\7.10 Exercise 2\Debug\7.10 Exercise 2.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project>
\ No newline at end of file diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.ilk b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.ilk Binary files differnew file mode 100644 index 0000000..8874881 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.ilk diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.log b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.log new file mode 100644 index 0000000..cf2039f --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.log @@ -0,0 +1,3 @@ + 7.10 Exercise 2.cpp
+C:\Users\Kaeden Grubb\Desktop\7.10 Exercise 2\7.10 Exercise 2\7.10 Exercise 2.cpp(23,21): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
+ 7.10 Exercise 2.vcxproj -> C:\Users\Kaeden Grubb\Desktop\7.10 Exercise 2\Debug\7.10 Exercise 2.exe
diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.obj b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.obj Binary files differnew file mode 100644 index 0000000..fc44de3 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.obj diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/7.10 Exercise 2.lastbuildstate b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/7.10 Exercise 2.lastbuildstate new file mode 100644 index 0000000..fd8d965 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/7.10 Exercise 2.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionATL=14.29.30136:VCServicingVersionCrtHeaders=14.29.30136:VCServicingVersionCompilers=14.29.30136:TargetPlatformVersion=10.0.19041.0:
+Debug|Win32|C:\Users\Kaeden Grubb\Desktop\7.10 Exercise 2\|
diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.command.1.tlog b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..f2e9dda --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.command.1.tlog diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.read.1.tlog b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..e23ad07 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.read.1.tlog diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.write.1.tlog b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..633e193 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/CL.write.1.tlog diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.command.1.tlog b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..4df3f86 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.command.1.tlog diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.read.1.tlog b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..f45cae4 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.read.1.tlog diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.write.1.tlog b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..d8155e6 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/7.10 Exercise 2.tlog/link.write.1.tlog diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/vc142.idb b/7.10 Exercise 2/7.10 Exercise 2/Debug/vc142.idb Binary files differnew file mode 100644 index 0000000..8682855 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/vc142.idb diff --git a/7.10 Exercise 2/7.10 Exercise 2/Debug/vc142.pdb b/7.10 Exercise 2/7.10 Exercise 2/Debug/vc142.pdb Binary files differnew file mode 100644 index 0000000..b2dbe54 --- /dev/null +++ b/7.10 Exercise 2/7.10 Exercise 2/Debug/vc142.pdb diff --git a/7.10 Exercise 2/Debug/7.10 Exercise 2.exe b/7.10 Exercise 2/Debug/7.10 Exercise 2.exe Binary files differnew file mode 100644 index 0000000..6bc8e00 --- /dev/null +++ b/7.10 Exercise 2/Debug/7.10 Exercise 2.exe diff --git a/7.10 Exercise 2/Debug/7.10 Exercise 2.pdb b/7.10 Exercise 2/Debug/7.10 Exercise 2.pdb Binary files differnew file mode 100644 index 0000000..043f624 --- /dev/null +++ b/7.10 Exercise 2/Debug/7.10 Exercise 2.pdb diff --git a/Module 3 Exercise 6.4, 6.5, 7.1.docx b/Module 3 Exercise 6.4, 6.5, 7.1.docx Binary files differnew file mode 100644 index 0000000..2359984 --- /dev/null +++ b/Module 3 Exercise 6.4, 6.5, 7.1.docx diff --git a/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.exe b/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.exe Binary files differnew file mode 100644 index 0000000..41ecc19 --- /dev/null +++ b/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.exe diff --git a/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.pdb b/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.pdb Binary files differnew file mode 100644 index 0000000..4e6a123 --- /dev/null +++ b/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.pdb diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2.sln b/Module 3 Exercise 7.2/Module 3 Exercise 7.2.sln new file mode 100644 index 0000000..087ea0b --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2.sln @@ -0,0 +1,31 @@ +
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31729.503
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Module 3 Exercise 7.2", "Module 3 Exercise 7.2\Module 3 Exercise 7.2.vcxproj", "{757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Debug|x64.ActiveCfg = Debug|x64
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Debug|x64.Build.0 = Debug|x64
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Debug|x86.ActiveCfg = Debug|Win32
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Debug|x86.Build.0 = Debug|Win32
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Release|x64.ActiveCfg = Release|x64
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Release|x64.Build.0 = Release|x64
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Release|x86.ActiveCfg = Release|Win32
+ {757185BF-2EA7-46AA-8A83-8AC9AF3E8D8B}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {D288B199-6AA4-4745-9FEF-D98F296CB323}
+ EndGlobalSection
+EndGlobal
diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.exe.recipe b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.exe.recipe new file mode 100644 index 0000000..09fdef0 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 7.2\Debug\Module 3 Exercise 7.2.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.ilk b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.ilk Binary files differnew file mode 100644 index 0000000..cf834d5 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.ilk diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.log b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.log new file mode 100644 index 0000000..bcff64b --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.log @@ -0,0 +1,2 @@ + Module 3 Exercise 7.2.cpp
+ Module 3 Exercise 7.2.vcxproj -> C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 7.2\Debug\Module 3 Exercise 7.2.exe
diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.obj b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.obj Binary files differnew file mode 100644 index 0000000..638d32d --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3 Exercise 7.2.obj diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.command.1.tlog b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..341104d --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.command.1.tlog diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.read.1.tlog b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..1a10e63 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.read.1.tlog diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.write.1.tlog b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..4beef5e --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/CL.write.1.tlog diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/Module 3 Exercise 7.2.lastbuildstate b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/Module 3 Exercise 7.2.lastbuildstate new file mode 100644 index 0000000..e00db57 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/Module 3 Exercise 7.2.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionATL=14.29.30136:VCServicingVersionCrtHeaders=14.29.30136:VCServicingVersionCompilers=14.29.30136:TargetPlatformVersion=10.0.19041.0:
+Debug|Win32|C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 7.2\|
diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.command.1.tlog b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..8cfeab3 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.command.1.tlog diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.read.1.tlog b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..87591f8 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.read.1.tlog diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.write.1.tlog b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..491aa98 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/Module 3.757185bf.tlog/link.write.1.tlog diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/vc142.idb b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/vc142.idb Binary files differnew file mode 100644 index 0000000..330547f --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/vc142.idb diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/vc142.pdb b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/vc142.pdb Binary files differnew file mode 100644 index 0000000..929f5d5 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Debug/vc142.pdb diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.cpp b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.cpp new file mode 100644 index 0000000..900270d --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.cpp @@ -0,0 +1,32 @@ +
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ int wealth, check, save;
+ cout << "How much money do you have in your account?";
+ cin >> wealth;
+ cout << "Do you have a checking account? (1 for yes, 0 for no)";
+ cin >> check;
+ cout << "Do you have a savings account? (1 for yes, 0 for no)";
+ cin >> save;
+ if (wealth > 25000)
+ cout << "You are a platinum member!\n";
+ else
+ if (wealth <= 25000 && wealth > 10000 && check > 1 && save > 1)
+ cout << "You are a gold member.\n";
+ else
+ if (wealth <= 25000 && wealth > 10000 && (check < 1 || save < 1))
+ cout << "You are a silver member.\n";
+ else
+ cout << "You are a copper member.\n";
+ if (check == 1)
+ cout << "Checking Account: Yes\n";
+ else
+ cout << "Checking Account: No\n";
+ if (save == 1)
+ cout << "Savings Account: Yes\n";
+ else
+ cout << "Savings Account: No\n";
+}
\ No newline at end of file diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj new file mode 100644 index 0000000..a297329 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <VCProjectVersion>16.0</VCProjectVersion>
+ <Keyword>Win32Proj</Keyword>
+ <ProjectGuid>{757185bf-2ea7-46aa-8a83-8ac9af3e8d8b}</ProjectGuid>
+ <RootNamespace>Module3Exercise72</RootNamespace>
+ <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</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>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="Shared">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="Module 3 Exercise 7.2.cpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj.filters b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj.filters new file mode 100644 index 0000000..e0546e3 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj.filters @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="Module 3 Exercise 7.2.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj.user b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/Module 3 Exercise 7.2/Module 3 Exercise 7.2/Module 3 Exercise 7.2.vcxproj.user @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup />
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.exe b/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.exe Binary files differnew file mode 100644 index 0000000..ddb4711 --- /dev/null +++ b/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.exe diff --git a/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.pdb b/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.pdb Binary files differnew file mode 100644 index 0000000..45e7e51 --- /dev/null +++ b/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.pdb diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4.sln b/Module 3 Exercise 7.4/Module 3 Exercise 7.4.sln new file mode 100644 index 0000000..f86d7c3 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4.sln @@ -0,0 +1,31 @@ +
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31729.503
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Module 3 Exercise 7.4", "Module 3 Exercise 7.4\Module 3 Exercise 7.4.vcxproj", "{7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Debug|x64.ActiveCfg = Debug|x64
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Debug|x64.Build.0 = Debug|x64
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Debug|x86.ActiveCfg = Debug|Win32
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Debug|x86.Build.0 = Debug|Win32
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Release|x64.ActiveCfg = Release|x64
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Release|x64.Build.0 = Release|x64
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Release|x86.ActiveCfg = Release|Win32
+ {7BDCB9AE-5866-4668-9F8A-01E0ABE6D2B0}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {DA458BB8-C9C4-4DF4-B435-A6788AFC1402}
+ EndGlobalSection
+EndGlobal
diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.exe.recipe b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.exe.recipe new file mode 100644 index 0000000..f5a8acf --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 7.4\Debug\Module 3 Exercise 7.4.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.ilk b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.ilk Binary files differnew file mode 100644 index 0000000..fe527b2 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.ilk diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.log b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.log new file mode 100644 index 0000000..d8be280 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.log @@ -0,0 +1,2 @@ + Module 3 Exercise 7.4.cpp
+ Module 3 Exercise 7.4.vcxproj -> C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 7.4\Debug\Module 3 Exercise 7.4.exe
diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.obj b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.obj Binary files differnew file mode 100644 index 0000000..f66095c --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3 Exercise 7.4.obj diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.command.1.tlog b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..086932f --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.command.1.tlog diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.read.1.tlog b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..349a6da --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.read.1.tlog diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.write.1.tlog b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..749b1c8 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/CL.write.1.tlog diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/Module 3 Exercise 7.4.lastbuildstate b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/Module 3 Exercise 7.4.lastbuildstate new file mode 100644 index 0000000..3ccc7b9 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/Module 3 Exercise 7.4.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionATL=14.29.30136:VCServicingVersionCrtHeaders=14.29.30136:VCServicingVersionCompilers=14.29.30136:TargetPlatformVersion=10.0.19041.0:
+Debug|Win32|C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 7.4\|
diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.command.1.tlog b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..4708043 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.command.1.tlog diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.read.1.tlog b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..106ef12 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.read.1.tlog diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.write.1.tlog b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..d22bf4c --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/Module 3.7bdcb9ae.tlog/link.write.1.tlog diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/vc142.idb b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/vc142.idb Binary files differnew file mode 100644 index 0000000..0766b7a --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/vc142.idb diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/vc142.pdb b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/vc142.pdb Binary files differnew file mode 100644 index 0000000..9c84f63 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Debug/vc142.pdb diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.cpp b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.cpp new file mode 100644 index 0000000..313326c --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.cpp @@ -0,0 +1,25 @@ +
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ int choice;
+ cout << "Student Grade Program\n" << "- Main Menu-\n" << "1. Enter Name\n" << "2. Enter test scores\n" << "3. Display test scores\n" << "9. Exit\n";
+ cin >> choice;
+ switch (choice)
+ {
+ case 1:
+ cout << "Enter Name";
+ break;
+ case 2:
+ cout << "Enter test score";
+ break;
+ case 3:
+ cout << "Display test scores";
+ break;
+ case 9:
+ cout << "Exit";
+ break;
+ }
+}
diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj new file mode 100644 index 0000000..1baa6df --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <VCProjectVersion>16.0</VCProjectVersion>
+ <Keyword>Win32Proj</Keyword>
+ <ProjectGuid>{7bdcb9ae-5866-4668-9f8a-01e0abe6d2b0}</ProjectGuid>
+ <RootNamespace>Module3Exercise74</RootNamespace>
+ <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</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>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="Shared">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="Module 3 Exercise 7.4.cpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj.filters b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj.filters new file mode 100644 index 0000000..6ccda65 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj.filters @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="Module 3 Exercise 7.4.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj.user b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/Module 3 Exercise 7.4/Module 3 Exercise 7.4/Module 3 Exercise 7.4.vcxproj.user @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup />
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.exe b/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.exe Binary files differnew file mode 100644 index 0000000..76a9321 --- /dev/null +++ b/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.exe diff --git a/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.pdb b/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.pdb Binary files differnew file mode 100644 index 0000000..23eba48 --- /dev/null +++ b/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.pdb diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.exe.recipe b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.exe.recipe new file mode 100644 index 0000000..db73ef9 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 8.2\Debug\Module 3 Exercise 8.2.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.ilk b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.ilk Binary files differnew file mode 100644 index 0000000..9a04350 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.ilk diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.log b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.log new file mode 100644 index 0000000..00b8ec0 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.log @@ -0,0 +1,2 @@ + Module 3 Exercise 8.2.cpp
+ Module 3 Exercise 8.2.vcxproj -> C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 8.2\Debug\Module 3 Exercise 8.2.exe
diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.obj b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.obj Binary files differnew file mode 100644 index 0000000..4d902b4 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3 Exercise 8.2.obj diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.command.1.tlog b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..feee755 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.command.1.tlog diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.read.1.tlog b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..4817004 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.read.1.tlog diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.write.1.tlog b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..eae2fdc --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/CL.write.1.tlog diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/Module 3 Exercise 8.2.lastbuildstate b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/Module 3 Exercise 8.2.lastbuildstate new file mode 100644 index 0000000..79b3f6d --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/Module 3 Exercise 8.2.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionATL=14.29.30136:VCServicingVersionCrtHeaders=14.29.30136:VCServicingVersionCompilers=14.29.30136:TargetPlatformVersion=10.0.19041.0:
+Debug|Win32|C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Module 3 Exercise 8.2\|
diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.command.1.tlog b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..e3aa13d --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.command.1.tlog diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.read.1.tlog b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..66d1fbf --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.read.1.tlog diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.write.1.tlog b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..f8e90de --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/Module 3.350b3ecb.tlog/link.write.1.tlog diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/vc142.idb b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/vc142.idb Binary files differnew file mode 100644 index 0000000..0e4587b --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/vc142.idb diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/vc142.pdb b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/vc142.pdb Binary files differnew file mode 100644 index 0000000..bc32ceb --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Debug/vc142.pdb diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.cpp b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.cpp new file mode 100644 index 0000000..0a81d6a --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.cpp @@ -0,0 +1,21 @@ +
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ int input_val, i;
+ do
+ {
+ cout << "Enter a number between 1 and 50.";
+ cin >> input_val;
+ } while (input_val > 50 || input_val < 1);
+ i = input_val/2;
+ i *= 2;
+ while (i > 0)
+ {
+ cout << i << endl;
+ i--;
+ i--;
+ }
+}
diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj new file mode 100644 index 0000000..d9d6e62 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <VCProjectVersion>16.0</VCProjectVersion>
+ <Keyword>Win32Proj</Keyword>
+ <ProjectGuid>{350b3ecb-e1ee-4de6-88dc-fea5d048d741}</ProjectGuid>
+ <RootNamespace>Module3Exercise82</RootNamespace>
+ <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</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>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="Shared">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="Module 3 Exercise 8.2.cpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj.filters b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj.filters new file mode 100644 index 0000000..8e61f06 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj.filters @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="Module 3 Exercise 8.2.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj.user b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/Module 3 Exercise 8.2/Module 3 Exercise 8.2/Module 3 Exercise 8.2.vcxproj.user @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup />
+</Project>
\ No newline at end of file diff --git a/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.exe b/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.exe Binary files differnew file mode 100644 index 0000000..24c476c --- /dev/null +++ b/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.exe diff --git a/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.pdb b/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.pdb Binary files differnew file mode 100644 index 0000000..5be78b9 --- /dev/null +++ b/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.pdb diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3.sln b/Section 8.10 Exercise 3/Section 8.10 Exercise 3.sln new file mode 100644 index 0000000..9072992 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3.sln @@ -0,0 +1,31 @@ +
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.31729.503
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Section 8.10 Exercise 3", "Section 8.10 Exercise 3\Section 8.10 Exercise 3.vcxproj", "{9EF8737A-E7FC-4039-89A6-04CCC978DD24}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Debug|x64.ActiveCfg = Debug|x64
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Debug|x64.Build.0 = Debug|x64
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Debug|x86.ActiveCfg = Debug|Win32
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Debug|x86.Build.0 = Debug|Win32
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Release|x64.ActiveCfg = Release|x64
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Release|x64.Build.0 = Release|x64
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Release|x86.ActiveCfg = Release|Win32
+ {9EF8737A-E7FC-4039-89A6-04CCC978DD24}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {D9974BF5-86A7-42C9-ADA3-E619D218DE9F}
+ EndGlobalSection
+EndGlobal
diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.command.1.tlog b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..22d76fd --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.command.1.tlog diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.read.1.tlog b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..1fdb2bc --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.read.1.tlog diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.write.1.tlog b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..9316a35 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/CL.write.1.tlog diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/Section 8.10 Exercise 3.lastbuildstate b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/Section 8.10 Exercise 3.lastbuildstate new file mode 100644 index 0000000..fa900f0 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/Section 8.10 Exercise 3.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionATL=14.29.30136:VCServicingVersionCrtHeaders=14.29.30136:VCServicingVersionCompilers=14.29.30136:TargetPlatformVersion=10.0.19041.0:
+Debug|Win32|C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Section 8.10 Exercise 3\|
diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.command.1.tlog b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..5bd2ea8 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.command.1.tlog diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.read.1.tlog b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..811aea3 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.read.1.tlog diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.write.1.tlog b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..9e601a1 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section .9ef8737a.tlog/link.write.1.tlog diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.exe.recipe b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.exe.recipe new file mode 100644 index 0000000..41784ae --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Section 8.10 Exercise 3\Debug\Section 8.10 Exercise 3.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project>
\ No newline at end of file diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.ilk b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.ilk Binary files differnew file mode 100644 index 0000000..51399e6 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.ilk diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.log b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.log new file mode 100644 index 0000000..7798207 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.log @@ -0,0 +1,2 @@ + Section 8.10 Exercise 3.cpp
+ Section 8.10 Exercise 3.vcxproj -> C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Section 8.10 Exercise 3\Debug\Section 8.10 Exercise 3.exe
diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.obj b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.obj Binary files differnew file mode 100644 index 0000000..dbad7c8 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/Section 8.10 Exercise 3.obj diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/vc142.idb b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/vc142.idb Binary files differnew file mode 100644 index 0000000..7fd165c --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/vc142.idb diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/vc142.pdb b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/vc142.pdb Binary files differnew file mode 100644 index 0000000..18f9fc5 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Debug/vc142.pdb diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.cpp b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.cpp new file mode 100644 index 0000000..a0467d1 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.cpp @@ -0,0 +1,18 @@ +
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ int fibonachi1 = 1;
+ int fibonachi2 = 0;
+ int inputVal;
+ cout << "Please input a number.";
+ cin >> inputVal;
+ for (int i = fibonachi1; i < inputVal; i = fibonachi1 )
+ {
+ cout << fibonachi1 << std::endl;
+ fibonachi1 += fibonachi2;
+ fibonachi2 = fibonachi1 - fibonachi2;
+ }
+}
diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj new file mode 100644 index 0000000..8f0968a --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj @@ -0,0 +1,147 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <VCProjectVersion>16.0</VCProjectVersion>
+ <Keyword>Win32Proj</Keyword>
+ <ProjectGuid>{9ef8737a-e7fc-4039-89a6-04ccc978dd24}</ProjectGuid>
+ <RootNamespace>Section810Exercise3</RootNamespace>
+ <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</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>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v142</PlatformToolset>
+ <WholeProgramOptimization>true</WholeProgramOptimization>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="Shared">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <LinkIncremental>false</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <ClCompile>
+ <WarningLevel>Level3</WarningLevel>
+ <FunctionLevelLinking>true</FunctionLevelLinking>
+ <IntrinsicFunctions>true</IntrinsicFunctions>
+ <SDLCheck>true</SDLCheck>
+ <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <ConformanceMode>true</ConformanceMode>
+ </ClCompile>
+ <Link>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="Section 8.10 Exercise 3.cpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj.filters b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj.filters new file mode 100644 index 0000000..8d8e091 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj.filters @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup>
+ <Filter Include="Source Files">
+ <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+ <Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+ </Filter>
+ <Filter Include="Header Files">
+ <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+ <Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
+ </Filter>
+ <Filter Include="Resource Files">
+ <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+ <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
+ </Filter>
+ </ItemGroup>
+ <ItemGroup>
+ <ClCompile Include="Section 8.10 Exercise 3.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj.user b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/Section 8.10 Exercise 3/Section 8.10 Exercise 3/Section 8.10 Exercise 3.vcxproj.user @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup />
+</Project>
\ No newline at end of file |