From 315c79b6b0da960d8f31f5b8f09ebd545c6fa4dd Mon Sep 17 00:00:00 2001 From: JacobAKnox <91796123+JacobAKnox@users.noreply.github.com> Date: Wed, 13 Oct 2021 20:38:38 -0700 Subject: 5c complete --- 5c/knox7.10 2/knox7.10 2.cpp | 46 ++++++++++ 5c/knox7.10 2/knox7.10 2.sln | 31 +++++++ 5c/knox7.10 2/knox7.10 2.vcxproj | 147 +++++++++++++++++++++++++++++++ 5c/knox7.10 2/knox7.10 2.vcxproj.filters | 22 +++++ 5c/pseudocode.txt | 20 +++++ 5 files changed, 266 insertions(+) create mode 100644 5c/knox7.10 2/knox7.10 2.cpp create mode 100644 5c/knox7.10 2/knox7.10 2.sln create mode 100644 5c/knox7.10 2/knox7.10 2.vcxproj create mode 100644 5c/knox7.10 2/knox7.10 2.vcxproj.filters create mode 100644 5c/pseudocode.txt (limited to '5c') diff --git a/5c/knox7.10 2/knox7.10 2.cpp b/5c/knox7.10 2/knox7.10 2.cpp new file mode 100644 index 0000000..5898aff --- /dev/null +++ b/5c/knox7.10 2/knox7.10 2.cpp @@ -0,0 +1,46 @@ +// knox7.10 2.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include +using namespace std; + + +int main() +{ + double intrest, amount, fee, intrestRate; + + cout << "\t-Loan Calculator-\n\n"; + + cout << "Input the requested amount in dollars: "; + cin >> amount; + + cout << "\nInput the intrest rate in percent: "; + cin >> intrestRate; + + cout.precision(2); + + if (100 > amount || amount > 1000) { + cout << fixed << "The amount of the loan must be between $100 and $1000. You input $" << amount << "."; + return 1; + } + if (1 > intrestRate || intrestRate > 18) { + cout << "The intrest rate of the loan must be between 1% and 18%. You input " << intrestRate << "%."; + return 1; + } + + if (amount <= 500) { + fee = 20; + } + else { + fee = 25; + } + + intrest = amount * (intrestRate / 100); + + cout << fixed << "\n\nYou requested a loan for $" << amount << ".\n"; + cout.precision(0); + cout << "The intrest rate is " << intrestRate << "%.\n"; + cout.precision(2); + cout << fixed << "The intrest is $" << intrest << ", and the fees are $" << fee << ", for a total of: $" << fee + intrest << "."; + return 0; +} diff --git a/5c/knox7.10 2/knox7.10 2.sln b/5c/knox7.10 2/knox7.10 2.sln new file mode 100644 index 0000000..46418d8 --- /dev/null +++ b/5c/knox7.10 2/knox7.10 2.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31727.386 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "knox7.10 2", "knox7.10 2.vcxproj", "{93FCDDB7-116F-4901-81F7-E482A4AD54D5}" +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 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Debug|x64.ActiveCfg = Debug|x64 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Debug|x64.Build.0 = Debug|x64 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Debug|x86.ActiveCfg = Debug|Win32 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Debug|x86.Build.0 = Debug|Win32 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Release|x64.ActiveCfg = Release|x64 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Release|x64.Build.0 = Release|x64 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Release|x86.ActiveCfg = Release|Win32 + {93FCDDB7-116F-4901-81F7-E482A4AD54D5}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {31C8093B-7D90-4DBD-BE37-24631A5F45E9} + EndGlobalSection +EndGlobal diff --git a/5c/knox7.10 2/knox7.10 2.vcxproj b/5c/knox7.10 2/knox7.10 2.vcxproj new file mode 100644 index 0000000..6451953 --- /dev/null +++ b/5c/knox7.10 2/knox7.10 2.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {93fcddb7-116f-4901-81f7-e482a4ad54d5} + knox7102 + 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/5c/knox7.10 2/knox7.10 2.vcxproj.filters b/5c/knox7.10 2/knox7.10 2.vcxproj.filters new file mode 100644 index 0000000..4f2e42d --- /dev/null +++ b/5c/knox7.10 2/knox7.10 2.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 diff --git a/5c/pseudocode.txt b/5c/pseudocode.txt new file mode 100644 index 0000000..cb43d40 --- /dev/null +++ b/5c/pseudocode.txt @@ -0,0 +1,20 @@ +get intrest_rate +get ammount + +if ammount > 1000 or < 100 + error +if intrest_rate < 1% or > 18% + error + +int fee + +if ammount <= 500 + fee = 20 +else + fee = 25 + +intrest = (intest_rate/100) * ammount + +output ammount +output intrest_rate +output intrest + fee \ No newline at end of file -- cgit v1.2.3