COS1512 - Introduction To Programming II (COS1512)
Exam (elaborations)
COS1512 assignment 2 solutions 2023 updated
702 views 8 purchases
Course
COS1512 - Introduction To Programming II (COS1512)
Institution
University Of South Africa (Unisa)
This document contains all of the codes to every question and output to the relevant questions that require the output.
Recently coded so there's no plagiarism
double total;
total=firstModule*firstFees+repModules*repFees;
return total;
}
int main()
{
char answer;
cout<<"Are you repeating any modules:Y\\N: ";
cin>>answer;
int firstModules;
, double firstFees;
if(answer=='Y')
{
double repFees;
int repModule;
cout<<"Enter the number of modules you are doing first time: ";
cin>>firstModules;
cout<<"Enter the fees for first time modules: ";
cin>>firstFees;
cout<<"Enter the number of modules you are repeating: ";
cin>>repModule;
cout<<"Enter the fees for modules repeated: ";
cin>>repFees;
cout<<"Your tuition fees are: R"<<calcFees(firstModules,firstFees,repModule,repFees);
}
else
{
cout<<"Enter the number of modules you are doing first time: ";
cin>>firstModules;
cout<<"Enter the fees for first time modules: ";
cin>>firstFees;
cout<<"Your tuition fees are: R"<<calcFees(firstModules,firstFees);
}
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 primenovice. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $11.48. You're not tied to anything after your purchase.