100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COS Assignment 2 solutions ready to submit, with source code $4.67   Add to cart

Other

COS Assignment 2 solutions ready to submit, with source code

 67 views  2 purchases
  • Course
  • Institution

the document has the solutions to the second assignment

Preview 3 out of 15  pages

  • June 5, 2023
  • 15
  • 2022/2023
  • Other
  • Unknown
avatar-seller
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;

double totalFees = calcFees(numModules, moduleFee, numRepeatedModules,
repeatedModuleFee);
cout << "Total tuition fees: R" << totalFees << endl;
}
else
{
double totalFees = calcFees(numModules, moduleFee);
cout << "Total tuition fees: R" << totalFees << endl;
}

return 0;
}

, Output




Question 2
#include <iostream>
#include <cassert>

using namespace std;

void convertTo12Hour(int hour24, int minute)
{
assert(hour24 >= 0 && hour24 < 24 && minute >= 0 && minute < 60);

string meridiem = (hour24 < 12) ? "AM" : "PM";
int hour12 = (hour24 == 0 || hour24 == 12) ? 12 : hour24 % 12;

cout << "12-hour notation: " << hour12 << ":" << minute << " " << meridiem
<< std::endl;
}

int main()
{
int hour24, minute;

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

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

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

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.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

80461 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling

Recently viewed by you


$4.67  2x  sold
  • (0)
  Add to cart