diff options
| author | KaedenGrubb <[email protected]> | 2021-12-07 20:50:02 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-12-07 20:50:02 -0800 |
| commit | f9e8eabce8a2ff389fbdf74fda94b650e305f872 (patch) | |
| tree | b973c07963f416a2004549827a44ad7c05a46a71 | |
| parent | Add online IDE url (diff) | |
| download | cst116-proj3-kaedengrubb-f9e8eabce8a2ff389fbdf74fda94b650e305f872.tar.xz cst116-proj3-kaedengrubb-f9e8eabce8a2ff389fbdf74fda94b650e305f872.zip | |
21 files changed, 341 insertions, 0 deletions
diff --git a/Project 3 Combined Code/Project 3 Combined Code.sln b/Project 3 Combined Code/Project 3 Combined Code.sln new file mode 100644 index 0000000..58e5175 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code.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}") = "Project 3 Combined Code", "Project 3 Combined Code\Project 3 Combined Code.vcxproj", "{E847C578-ACC8-4263-9DB4-E5409D13A6FA}"
+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
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Debug|x64.ActiveCfg = Debug|x64
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Debug|x64.Build.0 = Debug|x64
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Debug|x86.ActiveCfg = Debug|Win32
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Debug|x86.Build.0 = Debug|Win32
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Release|x64.ActiveCfg = Release|x64
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Release|x64.Build.0 = Release|x64
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Release|x86.ActiveCfg = Release|Win32
+ {E847C578-ACC8-4263-9DB4-E5409D13A6FA}.Release|x86.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {8ABF3FBD-FA08-474D-8E93-83F4BE937939}
+ EndGlobalSection
+EndGlobal
diff --git a/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.cpp b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.cpp new file mode 100644 index 0000000..c6255cb --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.cpp @@ -0,0 +1,114 @@ +//HEADER
+#pragma once
+#include <iostream>
+#include <iomanip>
+
+using namespace std;
+
+//function prototypes
+void getNewMatrices();
+void addMatrices();
+void multiplyMatrices();
+
+float Matrix1[3][3];
+float Matrix2[3][3];
+
+int main()
+{
+ int menuChoice = 0;
+ while (menuChoice != 4)
+ {
+ cout << "~The Matrix Machine~\n1) Get new matrices.\n2) Multiply Matrices\n3) Add Matrices\n4) Exit\nWhat would you like to do?";
+ cin >> menuChoice;
+ switch (menuChoice)
+ {
+ case 1:
+ getNewMatrices();
+ break;
+ case 2:
+ multiplyMatrices();
+ break;
+ case 3:
+ addMatrices();
+ break;
+ case 4:
+ break;
+ default:
+ cout << "Invalid menu choice.";
+ }
+ }
+ cout << "\nGoodbye!\n";
+}
+
+void multiplyMatrices()
+{
+ float matrixProduct[3][3];
+ char upperCornerL = 218, upperCornerR = 191, lowerCornerL = 192, lowerCornerR = 217;
+ for (int i = 0; i < 3; i++)
+ {
+ for (int j = 0; j < 3; j++)
+ {
+ matrixProduct[i][j] = (Matrix1[i][0] * Matrix2[0][j]) + (Matrix1[i][1] * Matrix2[1][j]) + (Matrix1[i][2] * Matrix2[2][j]);
+ }
+ }
+ cout << upperCornerL << setw(21) << upperCornerR
+ << endl;
+ for (int i = 0; i < 3; i++)
+ {
+ for (int j = 0; j < 3; j++)
+ {
+ cout << setw(6) << matrixProduct[i][j];
+ }
+ cout << endl;
+ }
+ cout << lowerCornerL << setw(21) << lowerCornerR << endl;
+ return;
+}
+
+//FUNCTIONS
+void getNewMatrices()
+{
+ for (int i = 0; i < 3; i++)
+ {
+ for (int j = 0; j < 3; j++)
+ {
+ cout << "Value " << (i * 3) + (j + 1) << " of Matrix 1: ";
+ cin >> Matrix1[i][j];
+ }
+ }
+
+ for (int i = 0; i < 3; i++)
+ {
+ for (int j = 0; j < 3; j++)
+ {
+ cout << "Value " << (i * 3) + (j + 1) << " of Matrix 2: ";
+ cin >> Matrix2[i][j];
+ }
+ }
+}
+
+void addMatrices()
+{
+ float displayMatrix[3][3];
+ char upperCornerL = 218, upperCornerR = 191, lowerCornerL = 192, lowerCornerR = 217;
+
+ for (int i = 0; i < 3; i++)
+ {
+ for (int j = 0; j < 3; j++)
+ {
+ displayMatrix[i][j] = Matrix1[i][j] + Matrix2[i][j];
+ }
+ }
+
+ cout << upperCornerL << setw(21) << upperCornerR
+ << endl;
+ for (int i = 0; i < 3; i++)
+ {
+ for (int j = 0; j < 3; j++)
+ {
+ cout << setw(6) << displayMatrix[i][j];
+ }
+ cout << endl;
+ }
+ cout << lowerCornerL << setw(21) << lowerCornerR << endl;
+}
\ No newline at end of file diff --git a/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.vcxproj b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.vcxproj new file mode 100644 index 0000000..9217e18 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.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>{e847c578-acc8-4263-9db4-e5409d13a6fa}</ProjectGuid>
+ <RootNamespace>Project3CombinedCode</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="Project 3 Combined Code.cpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project>
\ No newline at end of file diff --git a/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.vcxproj.filters b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.vcxproj.filters new file mode 100644 index 0000000..af07f44 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.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="Project 3 Combined Code.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
+ </ItemGroup>
+</Project>
\ No newline at end of file diff --git a/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.vcxproj.user b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.vcxproj.user new file mode 100644 index 0000000..0f14913 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/Project 3 Combined Code.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/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.command.1.tlog b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..208a21e --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.command.1.tlog diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.read.1.tlog b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..0500ec5 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.read.1.tlog diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.write.1.tlog b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..7855736 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/CL.write.1.tlog diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/Project 3 Combined Code.lastbuildstate b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/Project 3 Combined Code.lastbuildstate new file mode 100644 index 0000000..93b7937 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/Project 3 Combined Code.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|x64|C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\|
diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.command.1.tlog b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..bb8af14 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.command.1.tlog diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.read.1.tlog b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..c5c0379 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.read.1.tlog diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.write.1.tlog b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..2b7ff88 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project .e847c578.tlog/link.write.1.tlog diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.exe.recipe b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.exe.recipe new file mode 100644 index 0000000..0479e41 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.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\Project 3 Combined Code\x64\Debug\Project 3 Combined Code.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project>
\ No newline at end of file diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.ilk b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.ilk Binary files differnew file mode 100644 index 0000000..b3055a2 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.ilk diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.log b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.log new file mode 100644 index 0000000..b5c05da --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.log @@ -0,0 +1,10 @@ + Project 3 Combined Code.cpp
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(46,25): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(46,45): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(46,65): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(46,85): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(93,25): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(93,45): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(93,65): warning C4309: 'initializing': truncation of constant value
+C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\Project 3 Combined Code\Project 3 Combined Code.cpp(93,85): warning C4309: 'initializing': truncation of constant value
+ Project 3 Combined Code.vcxproj -> C:\Users\Kaeden Grubb\Desktop\CST 116 Work\Project 3 Combined Code\x64\Debug\Project 3 Combined Code.exe
diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.obj b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.obj Binary files differnew file mode 100644 index 0000000..d082ad2 --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.obj diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/vc142.idb b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/vc142.idb Binary files differnew file mode 100644 index 0000000..3ec826f --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/vc142.idb diff --git a/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/vc142.pdb b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/vc142.pdb Binary files differnew file mode 100644 index 0000000..e2827ea --- /dev/null +++ b/Project 3 Combined Code/Project 3 Combined Code/x64/Debug/vc142.pdb diff --git a/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.exe b/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.exe Binary files differnew file mode 100644 index 0000000..1db6504 --- /dev/null +++ b/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.exe diff --git a/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.pdb b/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.pdb Binary files differnew file mode 100644 index 0000000..b32c0d1 --- /dev/null +++ b/Project 3 Combined Code/x64/Debug/Project 3 Combined Code.pdb diff --git a/Project 3 Documentation.docx b/Project 3 Documentation.docx Binary files differnew file mode 100644 index 0000000..c0bca7d --- /dev/null +++ b/Project 3 Documentation.docx |