Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Да се креира класа за опишување на членови на еден клуб за попусти Chlen. За секој член се чуваат податоци за името (низа од 100 знаци), тип на член (basic или premium ), основен попуст (цел број изразен во проценти), дополнителен попуст (цел број изразен во проценти) и година на членарина (цел број). (5 поени)
- Сите членови на клубот имаат дополнителни поволности при користење услуги од одредени места. Основниот попуст е ист за сите членови и изнесува 10%. Оваа вредност може да се смени со одлука на клубот. Дополнителниот попуст е фиксен и важи само за premium членовите и изнесува 15% (5 поени).
- За оваа класа да се имплементира оператор << за печатење на член во формат:
- [ime_na_chlen]
- [tip_na_chlen] [godina_na_chlenarina] [popust_koj_moze_da_go_koristi]
- каде попустот се добива како основен попуст доколу членот е basic или како основен + дополнителен попуст ако членот е premium. (5 поени)
- Да се креира класа FINKI-club во која се чува цената на основната членарина (цел број), низа од членови (динамички алоцирана низа) и број на членови.(5 поени) За класата да се обезбедат:
- operator-= за бришење на членовите во ФИНКИ-клубот кои си ја немаат обновено членарината според тековната година која се предава како параметар. (5 поени) Не смее да се дозволи годината да биде негативен број. Ако се направи обид за бришење на член според невалидна година, треба да се генерира исклучок NotValidYear. (5 поени)
- operator << за печатење на сите членови на ФИНКИ-клубот. (5 поени)
- функција naplatiChlenarina во која се печати секој член колку треба да плати за членарина и притоа при плаќање членарина важат соодветните попусти кои ги има членот на клубот (5 поени).
- Да се обезбедат сите дополнителни методи потребни за правилно функционирање на програмата. (5 поени)
- #include<iostream>
- #include<cstring>
- using namespace std;
- enum tipC{basic=0, premium=1};
- class Chlen{
- protected:
- char name[100];
- int discount, addi, year;
- tipC type;
- public:
- Chlen(){}
- Chlen(char *i, tipC t, int y){
- strcpy(name, i);
- type=t;
- year=y;
- discount=10;
- addi=15;
- }
- friend ostream& operator<<(ostream &o, Chlen &c);
- char *getN(){
- return name;
- }
- string getT(){
- if(type==0)
- return "basic";
- else
- return "premium";
- }
- int getG(){
- return year;
- }
- int disc(){
- if(type==0)
- return discount;
- else
- return discount+addi;
- }
- void setPopust1(int x){
- discount=x;
- }
- void setNul(){
- name[0]='\0';
- discount=0;
- addi=0;
- year=0;
- }
- };
- ostream& operator<<(ostream &o, Chlen &c){
- o<<c.getN()<<endl;
- o<<c.getT()<<" "<<c.getG()<<" "<<c.disc()<<endl;
- return o;
- }
- class FINKI_club{
- private:
- int price, n;
- Chlen *cl;
- public:
- FINKI_club(){}
- FINKI_club(int p){
- price=p;
- }
- void setChlenovi(Chlen *c, int x){
- n=x;
- cl=new Chlen[n];
- for(int i=0; i<n; i++){
- cl[i]=c[i];
- }
- }
- void naplatiChlenarina(){
- for(int i=0; i<n; i++){
- cout<<cl[i];
- cout<<price-(cl[i].disc()*10)<<endl;
- }
- }
- friend void operator-=(FINKI_club &f, int y);
- friend ostream& operator<<(ostream &o, FINKI_club &f);
- };
- ostream& operator<<(ostream &o, FINKI_club &f){
- for(int i=0; i<f.n; i++){
- if(f.cl[i].getG()!=0)
- o<<f.cl[i];
- }
- return o;
- }
- void operator-=(FINKI_club &f, int y){
- if(y>0){
- for(int i=0; i<f.n; i++){
- if(f.cl[i].getG()<y)
- //cout<<"test"<<endl;
- f.cl[i].setNul();
- }
- }else
- cout<<"Vnesena e negativna vrednost za godinata!"<<endl;
- }
- int main(){
- int testCase;
- cin >> testCase;
- char ime[100];
- int tipChlen;
- int popust;
- int god;
- if (testCase == 1){
- cout << "===== Testiranje na klasata Chlen ======" << endl;
- cin.get();
- cin.getline(ime,100);
- cin >> tipChlen;
- cin >> god;
- cout << "===== CONSTRUCTOR ======" << endl;
- Chlen c(ime, (tipC) tipChlen, god);
- cout << c;
- }
- if (testCase == 2){
- cout << "===== Testiranje na static clenovi ======" << endl;
- cin.get();
- cin.getline(ime,100);
- cin >> tipChlen;
- cin >> god;
- cout << "===== CONSTRUCTOR ======" << endl;
- Chlen c(ime, (tipC) tipChlen, god);
- cout << c;
- c.setPopust1(5);
- cout << c;
- }
- if (testCase == 3){
- cout << "===== Testiranje na klasata FINKI-club ======" << endl;
- FINKI_club fc;
- int n;
- cin >> n;
- Chlen chlen[100];
- for(int i = 0; i < n; ++i) {
- cin.get();
- cin.getline(ime,100);
- cin >> tipChlen;
- cin >> god;
- Chlen c(ime, (tipC) tipChlen, god);
- chlen[i] = c;
- }
- fc.setChlenovi(chlen, n);
- cout << fc <<endl;
- }
- if (testCase == 4){
- cout << "===== Testiranje na operatorot -= ======" << endl;
- FINKI_club fc;
- int n;
- cin >> n;
- Chlen chlen[100];
- for(int i = 0; i < n; ++i) {
- cin.get();
- cin.getline(ime,100);
- cin >> tipChlen;
- cin >> god;
- Chlen c(ime, (tipC) tipChlen, god);
- chlen[i] = c;
- }
- fc.setChlenovi(chlen, n);
- cout << "OPERATOR -=" << endl;
- int godina;
- cin >> godina;
- fc-=godina;
- cout << fc;
- }
- if (testCase == 5){
- cout << "===== Testiranje na operatorot -= (so iskluchok) ======" << endl;
- FINKI_club fc;
- int n;
- cin >> n;
- Chlen chlen[100];
- for(int i = 0; i < n; ++i) {
- cin.get();
- cin.getline(ime,100);
- cin >> tipChlen;
- cin >> god;
- Chlen c(ime, (tipC) tipChlen, god);
- chlen[i] = c;
- }
- fc.setChlenovi(chlen, n);
- cout << "OPERATOR -=" << endl;
- int godina;
- cin >> godina;
- fc-=godina;
- cout << fc;
- }
- if (testCase == 6){
- cout << "===== Testiranje na metodot naplatiChlenarina ======" << endl << endl;
- FINKI_club fc(1000);
- int n;
- cin >> n;
- Chlen chlen[100];
- for(int i = 0; i < n; ++i) {
- cin.get();
- cin.getline(ime,100);
- cin >> tipChlen;
- cin >> god;
- Chlen c(ime, (tipC) tipChlen, god);
- chlen[i] = c;
- }
- fc.setChlenovi(chlen, n);
- cout << "Naplati chlenarina:" << endl;
- fc.naplatiChlenarina();
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment