Skip to content

..... #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions problem-1/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,58 @@

// Put your class declaration here

class arr {

private :

int n;
int *a = new int[n];
public :

arr();

arr(int in);

arr(const arr& arr2);

arr::arr(const arr & obj);

~arr();

int getSize();

void readElement();

double calculateAverage(int a[], int n);

int getElement(int array[], int n, int x);

void print();

arr operator+(arr a2);
arr operator-(arr a2);
arr operator/(arr a2);
arr operator*(arr a2);
int &operator[] (int indux);
arr operator+=(arr b2);
arr operator-=(arr b2);
arr operator/=(arr b2);
arr operator*=(arr b2);
arr operator-();

friend istream &operator>>(istream& input, arr& a) {

input >> a.n;
return input;
}
friend ostream &operator<<(ostream&output, arr& a) {

output << a.n;

return output;

}

};

#endif