COS1512 - Introduction To Programming II (COS1512)
All documents for this subject (51)
Seller
Follow
CrystalIndigo
Reviews received
Content preview
COS1512 2023 ASSIGNMENT 2
DISCUSSION
(with the source code you need)
Crystal Indigo!
Crystal Indigo!
Providing all solutions you need anytime
+27 76 626 8187
***copy and run the code, then submit what you need to submit***
Or ask for the source code
if there is a program that is not running, please contact
,Question 1
#include <iostream>
using namespace std;
// Function to calculate tuition fees for a student without repeated modules
double calcFees(int numModules, double moduleFee)
{
return numModules * moduleFee;
}
// Function to calculate tuition fees for a student with repeated modules
double calcFees(int numModules, double moduleFee, int numRepeatedModules,
double repeatedModuleFee)
{
return (numModules * moduleFee) + (numRepeatedModules * repeatedModuleFee);
}
int main()
{
int numModules, numRepeatedModules;
double moduleFee, repeatedModuleFee;
cout << "Does the student repeat any modules? (1 for Yes, 0 for No): ";
int repeatModules;
cin >> repeatModules;
cout << "Enter the number of modules enrolled for the first time: ";
cin >> numModules;
cout << "Enter the fee for those modules: R";
cin >> moduleFee;
if (repeatModules)
{
cout << "Enter the number of modules repeated: ";
cin >> numRepeatedModules;
cout << "Enter the fee for the repeated modules: R";
cin >> repeatedModuleFee;
cout << "Enter time in 24-hour notation (hour minute): ";
cin >> hour24 >> minute;
convertTo12Hour(hour24, minute);
return 0;
}
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller CrystalIndigo. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $4.67. You're not tied to anything after your purchase.