Skip to content

Instantly share code, notes, and snippets.

View dev-gerald2024's full-sized avatar

Azi Tech dev-gerald2024

View GitHub Profile
#include <iostream>
#include <iomanip>
using namespace std;
const int MAX_PRODUCTS = 100;
class Final_Project {
private:
string product_name[MAX_PRODUCTS];
int quantity[MAX_PRODUCTS];
#include <iostream>
using namespace std;
const int MAX_PRODUCTS = 100;
class Final_Project {
private:
string product_name[MAX_PRODUCTS];
int quantity[MAX_PRODUCTS];
double price[MAX_PRODUCTS];
#include <iostream>
using namespace std;
class Final_Project{
private:
//declaration of variables that will be used
string product_name;
int quantity;
double prize;
string user_name;
#include <iostream>
using namespace std;
class Bank {
public:
double initial_Amount, serviceFee;
int amount, withdraw;
double Compute () {
#include <iostream>
using namespace std;
class Bank {
public:
double initial_Amount, serviceFee;
int amount, withdraw;