subject

Modify the bigint class by

adding the > operation to determine whether one bigint object is bigger than another.

adding the subtraction operation - to class bigint: int1 - int2 which should return 0 if int1 is less than int2.

(bonus) adding the multiplication operation * to class bigint.

the bigint.

#include
#include
using namespace std;

#include "bigint. h"

// definition of read()
void bigint: : read(istream & in)
{
static bool instruct = true;
if (instruct)
{
cout < < "enter " < < digits_per_block < < "-digit blocks, separated by "
"spaces.\nenter a negative integer in last block to signal "
"the end of input.\n\n";
instruct = false;
}
short int block;
const short int max_block = (short) pow(10.0, digits_per_block) - 1;
for (; ; )
{
in > > block;
if (block < 0) return;

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 01:10
When you reach a yield sign, yield to cross traffic and before you enter the intersection. a. flash your headlights b. wait for a signal c. wait five seconds d. wait for a safe gap
Answers: 1
question
Computers and Technology, 22.06.2019 03:00
You install teamviewer on your workstation at home so that you can ac ess it when on the road. how can you be assured that unknown users cant access your computer through team viewer?
Answers: 2
question
Computers and Technology, 22.06.2019 15:30
When creating a budget, log fixed expenses before income. after income. after savings. at the top.
Answers: 1
question
Computers and Technology, 23.06.2019 07:00
Why is investing in a mutual fund less risky than investing in a particular company's stock? a. mutual funds only invest in blue-chip stocks. b. investments in mutual funds are more liquid. c. mutual funds hold a diversified portfolio of stocks. d. investments in mutual funds offer a higher rate of return.
Answers: 2
You know the right answer?
Modify the bigint class by

adding the > operation to determine whether one bigint ob...
Questions
question
Mathematics, 02.08.2019 13:20
question
Mathematics, 02.08.2019 13:20