Task 1 Biglnt class is used for the mathematical operations that involve very big integer calculations that are outside the limit of all available primitive data types. For example, factorial of 100 contains 158 digits in it so we can't store it in any primitive data type available. We can store as large Integer as we want in it. Your goal is to overload the operators for a generic "Biglnt" class. You will need to write two files (Biglnt.h and Biglnt.cpp) and test your program by writing main function. Your implemented class must fully provide the definitions of following class (interface) functions. class BigInt { //think about the private data members public: BigInt (int val BigInt (const string& text); BigInt(const BigInt& copy); // copy constructor 8); %3D BigInt operator+(const BigInt& val) const; BigInt operator+(int val) const; BigInt operator-(const BigInt& val) const; BigInt operator-(int val) const; // Logical Operators bool operator==(const BigInt& val) const; bool operator!%=(const BigInt& val) const; // Unary Operators BigInt& operator++(); // Pre-increment Operator BigInt operator++(int); // Post-increment Operator BigInt& operator--(); // Pre-decrement Operator BigInt operator--( int ); // Post-decrement Operator operator string(); -BigInt (); // destructor }; // return value of the BigInt as string ostream& operator<< (ostream& output, const BigInt& val); // outputs the BigInt istream& operator>>(istream& input, BigInt& val); // inputs the BigInt Artdress

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

c++

include .h file as well

Task 1
Biglnt class is used for the mathematical operations that involve very big integer
calculations that are outside the limit of all available primitive data types. For example,
factorial of 100 contains 158 digits in it so we can't store it in any primitive data type
available. We can store as large Integer as we want in it.
Your goal is to overload the operators for a generic “Biglnt" class. You will need to write
two files (Biglnt.h and Biglnt.cpp) and test your program by writing main function. Your
implemented class must fully provide the definitions of following class (interface)
functions.
class BigInt
{
//think about the private data members
public:
BigInt (int val
BigInt (const string& text);
BigInt (const BigInt& copy); // copy constructor
0);
%3D
BigInt operator+(const BigInt& val) const;
BigInt operator+(int val) const;
BigInt operator-(const BigInt& val) const;
BigInt operator-(int val) const;
// Logical Operators
bool operator==(const BigInt& val) const;
bool operator!=(const BigInt& val) const;
// Unary Operators
BigInt& operator++(); // Pre-increment Operator
BigInt operator++(int); // Post-increment Operator
BigInt& operator--(); // Pre-decrement Operator
BigInt operator--( int ); // Post-decrement Operator
operator string();
-BigInt (); // destructor
};
// return value of the BigInt as string
ostream& operator<< (ostream& output, const BigInt& val); // outputs the
BigInt
istream& operator>>(istream& input, BigInt& val); // inputs the BigInt
Arddress
Transcribed Image Text:Task 1 Biglnt class is used for the mathematical operations that involve very big integer calculations that are outside the limit of all available primitive data types. For example, factorial of 100 contains 158 digits in it so we can't store it in any primitive data type available. We can store as large Integer as we want in it. Your goal is to overload the operators for a generic “Biglnt" class. You will need to write two files (Biglnt.h and Biglnt.cpp) and test your program by writing main function. Your implemented class must fully provide the definitions of following class (interface) functions. class BigInt { //think about the private data members public: BigInt (int val BigInt (const string& text); BigInt (const BigInt& copy); // copy constructor 0); %3D BigInt operator+(const BigInt& val) const; BigInt operator+(int val) const; BigInt operator-(const BigInt& val) const; BigInt operator-(int val) const; // Logical Operators bool operator==(const BigInt& val) const; bool operator!=(const BigInt& val) const; // Unary Operators BigInt& operator++(); // Pre-increment Operator BigInt operator++(int); // Post-increment Operator BigInt& operator--(); // Pre-decrement Operator BigInt operator--( int ); // Post-decrement Operator operator string(); -BigInt (); // destructor }; // return value of the BigInt as string ostream& operator<< (ostream& output, const BigInt& val); // outputs the BigInt istream& operator>>(istream& input, BigInt& val); // inputs the BigInt Arddress
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education