diff options
45 files changed, 335 insertions, 0 deletions
diff --git a/.vs/Excersize 5/FileContentIndex/d290c870-0ac6-4ee8-af02-31621d447c4a.vsidx b/.vs/Excersize 5/FileContentIndex/d290c870-0ac6-4ee8-af02-31621d447c4a.vsidx Binary files differnew file mode 100644 index 0000000..367b42a --- /dev/null +++ b/.vs/Excersize 5/FileContentIndex/d290c870-0ac6-4ee8-af02-31621d447c4a.vsidx diff --git a/.vs/Excersize 5/v17/.suo b/.vs/Excersize 5/v17/.suo Binary files differnew file mode 100644 index 0000000..174d587 --- /dev/null +++ b/.vs/Excersize 5/v17/.suo diff --git a/.vs/Excersize 5/v17/Browse.VC.db b/.vs/Excersize 5/v17/Browse.VC.db Binary files differnew file mode 100644 index 0000000..cd70be9 --- /dev/null +++ b/.vs/Excersize 5/v17/Browse.VC.db diff --git a/.vs/Excersize 5/v17/Solution.VC.db b/.vs/Excersize 5/v17/Solution.VC.db Binary files differnew file mode 100644 index 0000000..1597fdf --- /dev/null +++ b/.vs/Excersize 5/v17/Solution.VC.db diff --git a/.vs/Excersize 5/v17/ipch/AutoPCH/bddb9eb7905c21f/EXCERSIZE 5.ipch b/.vs/Excersize 5/v17/ipch/AutoPCH/bddb9eb7905c21f/EXCERSIZE 5.ipch Binary files differnew file mode 100644 index 0000000..39dfb1d --- /dev/null +++ b/.vs/Excersize 5/v17/ipch/AutoPCH/bddb9eb7905c21f/EXCERSIZE 5.ipch diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +}
\ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..6b61141 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,6 @@ +{ + "ExpandedNodes": [ + "" + ], + "PreviewInSolutionExplorer": false +}
\ No newline at end of file diff --git a/.vs/in-class-exercise-5-connormcdowell275/FileContentIndex/3b3979bf-5a9b-45ac-b9b3-92b81b52dc8e.vsidx b/.vs/in-class-exercise-5-connormcdowell275/FileContentIndex/3b3979bf-5a9b-45ac-b9b3-92b81b52dc8e.vsidx Binary files differnew file mode 100644 index 0000000..c55ac07 --- /dev/null +++ b/.vs/in-class-exercise-5-connormcdowell275/FileContentIndex/3b3979bf-5a9b-45ac-b9b3-92b81b52dc8e.vsidx diff --git a/.vs/in-class-exercise-5-connormcdowell275/v17/.wsuo b/.vs/in-class-exercise-5-connormcdowell275/v17/.wsuo Binary files differnew file mode 100644 index 0000000..40ce662 --- /dev/null +++ b/.vs/in-class-exercise-5-connormcdowell275/v17/.wsuo diff --git a/.vs/in-class-exercise-5-connormcdowell275/v17/Browse.VC.db b/.vs/in-class-exercise-5-connormcdowell275/v17/Browse.VC.db Binary files differnew file mode 100644 index 0000000..42a8d36 --- /dev/null +++ b/.vs/in-class-exercise-5-connormcdowell275/v17/Browse.VC.db diff --git a/.vs/in-class-exercise-5-connormcdowell275/v17/Solution.VC.db b/.vs/in-class-exercise-5-connormcdowell275/v17/Solution.VC.db Binary files differnew file mode 100644 index 0000000..fbc2e0c --- /dev/null +++ b/.vs/in-class-exercise-5-connormcdowell275/v17/Solution.VC.db diff --git a/.vs/in-class-exercise-5-connormcdowell275/v17/ipch/AutoPCH/a5432491adb96f09/WORKSPACE.ipch b/.vs/in-class-exercise-5-connormcdowell275/v17/ipch/AutoPCH/a5432491adb96f09/WORKSPACE.ipch Binary files differnew file mode 100644 index 0000000..89371ab --- /dev/null +++ b/.vs/in-class-exercise-5-connormcdowell275/v17/ipch/AutoPCH/a5432491adb96f09/WORKSPACE.ipch diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite Binary files differnew file mode 100644 index 0000000..a819722 --- /dev/null +++ b/.vs/slnx.sqlite diff --git a/Excersize 5.cpp b/Excersize 5.cpp new file mode 100644 index 0000000..6362e6e --- /dev/null +++ b/Excersize 5.cpp @@ -0,0 +1,59 @@ +// Name: Connor McDowell +// Date: 1/22/2024 +// Class: CST116 +// Assignment: exercise 5 + +#include <iostream> + +#include "helper.h" + +int main() +{ + int mySum = sum(15, 30); + + std::cout << mySum << std::endl; + + + +} + +int returnInt() +{ + + return 10; +} + +int sum(int a, int b) +{ + int sum = 0; + sum = a + b; + + return sum; +} + +float percentage(int a, int b) +{ + int perc = 0; + perc = (static_cast<float>(a) / b) * 100; + + return perc; +} + + +float FtoC(int fah) +{ + // -32*5/9 + + float num = (fah - 32) * (5 / 9); + + return num; +} + +float CtoF(int cel) +{ + // 9/5+32 + + float num = (cel * (9.0 / 5.0)) + 32; + + return num; +}
\ No newline at end of file diff --git a/Excersize 5.sln b/Excersize 5.sln new file mode 100644 index 0000000..c17c5c8 --- /dev/null +++ b/Excersize 5.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34408.163 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Excersize 5", "Excersize 5.vcxproj", "{F1D7E6C4-986B-4250-87D2-842F20591189}" +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 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x64.ActiveCfg = Debug|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x64.Build.0 = Debug|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x86.ActiveCfg = Debug|Win32 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x86.Build.0 = Debug|Win32 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x64.ActiveCfg = Release|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x64.Build.0 = Release|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x86.ActiveCfg = Release|Win32 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1F032F7E-F2E1-4035-B8DA-CA9C465160BF} + EndGlobalSection +EndGlobal diff --git a/Excersize 5.vcxproj b/Excersize 5.vcxproj new file mode 100644 index 0000000..ecd9dd1 --- /dev/null +++ b/Excersize 5.vcxproj @@ -0,0 +1,138 @@ +<?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>17.0</VCProjectVersion> + <Keyword>Win32Proj</Keyword> + <ProjectGuid>{f1d7e6c4-986b-4250-87d2-842f20591189}</ProjectGuid> + <RootNamespace>Excersize5</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>v143</PlatformToolset> + <CharacterSet>Unicode</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> + <ConfigurationType>Application</ConfigurationType> + <UseDebugLibraries>false</UseDebugLibraries> + <PlatformToolset>v143</PlatformToolset> + <WholeProgramOptimization>true</WholeProgramOptimization> + <CharacterSet>Unicode</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> + <ConfigurationType>Application</ConfigurationType> + <UseDebugLibraries>true</UseDebugLibraries> + <PlatformToolset>v143</PlatformToolset> + <CharacterSet>Unicode</CharacterSet> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> + <ConfigurationType>Application</ConfigurationType> + <UseDebugLibraries>false</UseDebugLibraries> + <PlatformToolset>v143</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" /> + <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="Excersize 5.cpp" /> + </ItemGroup> + <ItemGroup> + <ClInclude Include="helper.h" /> + </ItemGroup> + <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> + <ImportGroup Label="ExtensionTargets"> + </ImportGroup> +</Project>
\ No newline at end of file diff --git a/Excersize 5.vcxproj.filters b/Excersize 5.vcxproj.filters new file mode 100644 index 0000000..7ec2f9f --- /dev/null +++ b/Excersize 5.vcxproj.filters @@ -0,0 +1,27 @@ +<?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="Excersize 5.cpp"> + <Filter>Source Files</Filter> + </ClCompile> + </ItemGroup> + <ItemGroup> + <ClInclude Include="helper.h"> + <Filter>Header Files</Filter> + </ClInclude> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/Excersize 5.vcxproj.user b/Excersize 5.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/Excersize 5.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/Excersize 5/.vs/Excersize 5/FileContentIndex/6a3cfc80-e806-4722-8474-bf127de2c6d9.vsidx b/Excersize 5/.vs/Excersize 5/FileContentIndex/6a3cfc80-e806-4722-8474-bf127de2c6d9.vsidx Binary files differnew file mode 100644 index 0000000..70aef67 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/FileContentIndex/6a3cfc80-e806-4722-8474-bf127de2c6d9.vsidx diff --git a/Excersize 5/.vs/Excersize 5/FileContentIndex/93332cbc-4e41-4937-8eaa-7b1524d74852.vsidx b/Excersize 5/.vs/Excersize 5/FileContentIndex/93332cbc-4e41-4937-8eaa-7b1524d74852.vsidx Binary files differnew file mode 100644 index 0000000..70aef67 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/FileContentIndex/93332cbc-4e41-4937-8eaa-7b1524d74852.vsidx diff --git a/Excersize 5/.vs/Excersize 5/FileContentIndex/9368f94e-e0df-45c5-87c8-8ada23524331.vsidx b/Excersize 5/.vs/Excersize 5/FileContentIndex/9368f94e-e0df-45c5-87c8-8ada23524331.vsidx Binary files differnew file mode 100644 index 0000000..70aef67 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/FileContentIndex/9368f94e-e0df-45c5-87c8-8ada23524331.vsidx diff --git a/Excersize 5/.vs/Excersize 5/v17/.suo b/Excersize 5/.vs/Excersize 5/v17/.suo Binary files differnew file mode 100644 index 0000000..d314198 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/v17/.suo diff --git a/Excersize 5/.vs/Excersize 5/v17/Browse.VC.db b/Excersize 5/.vs/Excersize 5/v17/Browse.VC.db Binary files differnew file mode 100644 index 0000000..04715a8 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/v17/Browse.VC.db diff --git a/Excersize 5/.vs/Excersize 5/v17/Solution.VC.db b/Excersize 5/.vs/Excersize 5/v17/Solution.VC.db Binary files differnew file mode 100644 index 0000000..eda4714 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/v17/Solution.VC.db diff --git a/Excersize 5/.vs/Excersize 5/v17/ipch/AutoPCH/6c86301b145bd053/EXCERSIZE 5.ipch b/Excersize 5/.vs/Excersize 5/v17/ipch/AutoPCH/6c86301b145bd053/EXCERSIZE 5.ipch Binary files differnew file mode 100644 index 0000000..299c184 --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/v17/ipch/AutoPCH/6c86301b145bd053/EXCERSIZE 5.ipch diff --git a/Excersize 5/.vs/Excersize 5/v17/ipch/AutoPCH/c6b81e5df2cfdbaf/EXCERSIZE 5.ipch b/Excersize 5/.vs/Excersize 5/v17/ipch/AutoPCH/c6b81e5df2cfdbaf/EXCERSIZE 5.ipch Binary files differnew file mode 100644 index 0000000..cece69b --- /dev/null +++ b/Excersize 5/.vs/Excersize 5/v17/ipch/AutoPCH/c6b81e5df2cfdbaf/EXCERSIZE 5.ipch diff --git a/Excersize 5/Excersize 5.sln b/Excersize 5/Excersize 5.sln new file mode 100644 index 0000000..c17c5c8 --- /dev/null +++ b/Excersize 5/Excersize 5.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34408.163 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Excersize 5", "Excersize 5.vcxproj", "{F1D7E6C4-986B-4250-87D2-842F20591189}" +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 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x64.ActiveCfg = Debug|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x64.Build.0 = Debug|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x86.ActiveCfg = Debug|Win32 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Debug|x86.Build.0 = Debug|Win32 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x64.ActiveCfg = Release|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x64.Build.0 = Release|x64 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x86.ActiveCfg = Release|Win32 + {F1D7E6C4-986B-4250-87D2-842F20591189}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1F032F7E-F2E1-4035-B8DA-CA9C465160BF} + EndGlobalSection +EndGlobal diff --git a/helper.h b/helper.h new file mode 100644 index 0000000..39f5d52 --- /dev/null +++ b/helper.h @@ -0,0 +1,15 @@ +#ifndef MY_HEADER_FILE_H +#define MY_HEADER_FILE_H + +int returnInt(); + +int sum(int a, int b); + +float percentage(int a, int b); + +float FtoC(int fah); + +float CtoF(int cel); + +#endif MY_HEADER_FILE_H + diff --git a/x64/Debug/Excersize 5.exe b/x64/Debug/Excersize 5.exe Binary files differnew file mode 100644 index 0000000..acff8de --- /dev/null +++ b/x64/Debug/Excersize 5.exe diff --git a/x64/Debug/Excersize 5.exe.recipe b/x64/Debug/Excersize 5.exe.recipe new file mode 100644 index 0000000..a060b67 --- /dev/null +++ b/x64/Debug/Excersize 5.exe.recipe @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project> + <ProjectOutputs> + <ProjectOutput> + <FullPath>C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\x64\Debug\Excersize 5.exe</FullPath> + </ProjectOutput> + </ProjectOutputs> + <ContentFiles /> + <SatelliteDlls /> + <NonRecipeFileRefs /> +</Project>
\ No newline at end of file diff --git a/x64/Debug/Excersize 5.ilk b/x64/Debug/Excersize 5.ilk Binary files differnew file mode 100644 index 0000000..7f79cb0 --- /dev/null +++ b/x64/Debug/Excersize 5.ilk diff --git a/x64/Debug/Excersize 5.log b/x64/Debug/Excersize 5.log new file mode 100644 index 0000000..7d3d783 --- /dev/null +++ b/x64/Debug/Excersize 5.log @@ -0,0 +1,6 @@ + Excersize 5.cpp +C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\Excersize 5.cpp(37,37): warning C4244: '=': conversion from 'float' to 'int', possible loss of data +C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\Excersize 5.cpp(39,9): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data +C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\Excersize 5.cpp(47,12): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data +C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\Excersize 5.cpp(56,12): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data + Excersize 5.vcxproj -> C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\x64\Debug\Excersize 5.exe diff --git a/x64/Debug/Excersize 5.obj b/x64/Debug/Excersize 5.obj Binary files differnew file mode 100644 index 0000000..bee5f21 --- /dev/null +++ b/x64/Debug/Excersize 5.obj diff --git a/x64/Debug/Excersize 5.pdb b/x64/Debug/Excersize 5.pdb Binary files differnew file mode 100644 index 0000000..62a3320 --- /dev/null +++ b/x64/Debug/Excersize 5.pdb diff --git a/x64/Debug/Excersize 5.tlog/CL.command.1.tlog b/x64/Debug/Excersize 5.tlog/CL.command.1.tlog Binary files differnew file mode 100644 index 0000000..cfb9d3f --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/CL.command.1.tlog diff --git a/x64/Debug/Excersize 5.tlog/CL.read.1.tlog b/x64/Debug/Excersize 5.tlog/CL.read.1.tlog Binary files differnew file mode 100644 index 0000000..0285882 --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/CL.read.1.tlog diff --git a/x64/Debug/Excersize 5.tlog/CL.write.1.tlog b/x64/Debug/Excersize 5.tlog/CL.write.1.tlog Binary files differnew file mode 100644 index 0000000..4d2fb32 --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/CL.write.1.tlog diff --git a/x64/Debug/Excersize 5.tlog/Cl.items.tlog b/x64/Debug/Excersize 5.tlog/Cl.items.tlog new file mode 100644 index 0000000..f40db80 --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/Cl.items.tlog @@ -0,0 +1 @@ +C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\Excersize 5.cpp;C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\x64\Debug\Excersize 5.obj diff --git a/x64/Debug/Excersize 5.tlog/Excersize 5.lastbuildstate b/x64/Debug/Excersize 5.tlog/Excersize 5.lastbuildstate new file mode 100644 index 0000000..781ecbe --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/Excersize 5.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.38.33130:TargetPlatformVersion=10.0.22621.0: +Debug|x64|C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\| diff --git a/x64/Debug/Excersize 5.tlog/link.command.1.tlog b/x64/Debug/Excersize 5.tlog/link.command.1.tlog Binary files differnew file mode 100644 index 0000000..f65c803 --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/link.command.1.tlog diff --git a/x64/Debug/Excersize 5.tlog/link.read.1.tlog b/x64/Debug/Excersize 5.tlog/link.read.1.tlog Binary files differnew file mode 100644 index 0000000..609a461 --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/link.read.1.tlog diff --git a/x64/Debug/Excersize 5.tlog/link.write.1.tlog b/x64/Debug/Excersize 5.tlog/link.write.1.tlog Binary files differnew file mode 100644 index 0000000..44681a5 --- /dev/null +++ b/x64/Debug/Excersize 5.tlog/link.write.1.tlog diff --git a/x64/Debug/Excersize 5.vcxproj.FileListAbsolute.txt b/x64/Debug/Excersize 5.vcxproj.FileListAbsolute.txt new file mode 100644 index 0000000..68f9ff2 --- /dev/null +++ b/x64/Debug/Excersize 5.vcxproj.FileListAbsolute.txt @@ -0,0 +1 @@ +C:\Users\thesa\source\repos\in-class-exercise-5-connormcdowell275\Excersize 5\x64\Debug\Excersize 5.exe diff --git a/x64/Debug/vc143.idb b/x64/Debug/vc143.idb Binary files differnew file mode 100644 index 0000000..e3cd953 --- /dev/null +++ b/x64/Debug/vc143.idb diff --git a/x64/Debug/vc143.pdb b/x64/Debug/vc143.pdb Binary files differnew file mode 100644 index 0000000..901ddda --- /dev/null +++ b/x64/Debug/vc143.pdb |