From 7ab5241b448d59d6808dfd866c090bf352d9a99d Mon Sep 17 00:00:00 2001 From: JacobAKnox <91796123+JacobAKnox@users.noreply.github.com> Date: Fri, 15 Oct 2021 11:32:51 -0700 Subject: Adding broken version of my code --- BrokenCode/BrokenCode.cpp | 20 +++++ BrokenCode/BrokenCode.sln | 31 +++++++ BrokenCode/BrokenCode.vcxproj | 147 ++++++++++++++++++++++++++++++++++ BrokenCode/BrokenCode.vcxproj.filters | 22 +++++ 4 files changed, 220 insertions(+) create mode 100644 BrokenCode/BrokenCode.cpp create mode 100644 BrokenCode/BrokenCode.sln create mode 100644 BrokenCode/BrokenCode.vcxproj create mode 100644 BrokenCode/BrokenCode.vcxproj.filters diff --git a/BrokenCode/BrokenCode.cpp b/BrokenCode/BrokenCode.cpp new file mode 100644 index 0000000..73e5c44 --- /dev/null +++ b/BrokenCode/BrokenCode.cpp @@ -0,0 +1,20 @@ +// BrokenCode.cpp : This file contains the 'main' function. Program execution begins and ends there. +//This file has one logic and one syntax error + +#include +using namespace std; + +int main() +{ + const double PI = 3.142; + double radius, height, volume; + + cout << "Input the cylinder's radius: "; + cin >> radius; + cout << "Input the cylinder's height: "; + cin >> height; + + volume = radius * radius * radius * PI * height; + cout.precision(3); + cout << fixed << "The volume of a cyliner with radius: " << radius + ", and height: " << height << ", is " << volume; +} diff --git a/BrokenCode/BrokenCode.sln b/BrokenCode/BrokenCode.sln new file mode 100644 index 0000000..50f4be8 --- /dev/null +++ b/BrokenCode/BrokenCode.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}") = "BrokenCode", "BrokenCode.vcxproj", "{A67C5459-E80C-4099-9E8D-749264353532}" +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 + {A67C5459-E80C-4099-9E8D-749264353532}.Debug|x64.ActiveCfg = Debug|x64 + {A67C5459-E80C-4099-9E8D-749264353532}.Debug|x64.Build.0 = Debug|x64 + {A67C5459-E80C-4099-9E8D-749264353532}.Debug|x86.ActiveCfg = Debug|Win32 + {A67C5459-E80C-4099-9E8D-749264353532}.Debug|x86.Build.0 = Debug|Win32 + {A67C5459-E80C-4099-9E8D-749264353532}.Release|x64.ActiveCfg = Release|x64 + {A67C5459-E80C-4099-9E8D-749264353532}.Release|x64.Build.0 = Release|x64 + {A67C5459-E80C-4099-9E8D-749264353532}.Release|x86.ActiveCfg = Release|Win32 + {A67C5459-E80C-4099-9E8D-749264353532}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AB3A626B-B64F-4C31-93B5-2DA197BF63FE} + EndGlobalSection +EndGlobal diff --git a/BrokenCode/BrokenCode.vcxproj b/BrokenCode/BrokenCode.vcxproj new file mode 100644 index 0000000..f62f047 --- /dev/null +++ b/BrokenCode/BrokenCode.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {a67c5459-e80c-4099-9e8d-749264353532} + BrokenCode + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + false + + + true + + + false + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/BrokenCode/BrokenCode.vcxproj.filters b/BrokenCode/BrokenCode.vcxproj.filters new file mode 100644 index 0000000..4ab60d3 --- /dev/null +++ b/BrokenCode/BrokenCode.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + \ No newline at end of file -- cgit v1.2.3