100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COS2614 Assignment 3 2022 [Google Drive Link Available to a complete Zip] $8.97   Add to cart

Exam (elaborations)

COS2614 Assignment 3 2022 [Google Drive Link Available to a complete Zip]

 88 views  5 purchases
  • Course
  • Institution

COS2614 Assignment 3 of 2022 with comments, there is a link to download the whole project. 100% PASS Guaranteed solutions. for assistance.

Preview 2 out of 12  pages

  • July 27, 2022
  • 12
  • 2021/2022
  • Exam (elaborations)
  • Questions & answers
avatar-seller
For Assistance with other modules
Call or Whatsapp +27682021794
www.myassignments.co.za




COS2614
Assignment 03
2022

Due date
Friday, 29 July 2022,
11:00 PM
UNIQUE NUMBER: 799948

, QUESTION 1
// ACCOUNT CLASS
#ifndef ACCOUNT_H
#define ACCOUNT_H
#include <QList>
#include "customer.h"
#include "transaction.h"

class Account{
public:
Account(QString a, Customer c);
void deposit(double d);
virtual bool withdraw(double d) = 0;
virtual QString toString()const;
QList<Transaction> getTransactions()const;
double getBalance() const;
QString getAccountNo()const;
protected:
void setBalance(double d);
void addTransaction(Transaction t);
private:
QString m_AccountNo;
Customer m_AccHolder;
double m_Balance;
QList<Transaction> m_Transactions;
};
#endif // ACCOUNT_H

#include <QTextStream>
#include "account.h"

Account::Account(QString a, Customer c): m_AccountNo(a),m_AccHolder(c),
m_Balance(0.0){
Transaction t("Account opened", QDate::currentDate());
addTransaction(t);
}

void Account::deposit(double d){
m_Balance = m_Balance+ d;
Transaction t("Account credited with an amount of " +
QString::number(d, 'f', 2) ,
QDate::currentDate());
addTransaction(t);
}

void Account::setBalance(double d){
m_Balance = d;
}

QString Account::toString()const{
QString result;
QTextStream accountString(&result);
accountString << "Account No: " << m_AccountNo <<
"\nAccount holder: " << m_AccHolder.toString() <<
"\nBalance: " << m_Balance <<
"\nTransactions: ";
foreach (Transaction t, m_Transactions) {
accountString << "\n\t" << t.toString();
}
return result;


2

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 MyAssignments. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $8.97. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

78121 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
$8.97  5x  sold
  • (0)
  Add to cart