subject

Adding BIG Integers In C++ an int is in the range 0 to 65535. But what if we need to add larger integers?Say we want compute the sum 2345566777844567+ 9999988777765768009998.You task in this assignment is to make this happen. Write a function string add(string a, string b)where a and b are strings representing integers and the function add(a, b) returns a string representing their sum. Strings a and b can have a maximum of 100 characters. Write a main program that loops asking the user for the two numbers a and b. The program should terminate if the user enters "done" what asked for "number" a. Code given by professor to start assigment:string add( string a, string b ) {string answer = "answer to be calcuated\n";return answer;}int main() {string x, y;for ( ;; ) {cout << "Enter two numbers a and b as string: " << "\t";cin >> x >> y;if ( x == "done" || y == "done" ){cout << "normal termination of the program" << endl;exit(1);}cout << x << " + " << y << " = " << add( x, y ) << endl;}return 0;}

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 21:00
Ulia is planning to attend the same private four-year college her parents attended. she wants to save at least $18,000 in four years to contribute to her college education. which monthly deposit amounts can julia use to achieve her goal? check all that apply.
Answers: 2
question
Computers and Technology, 23.06.2019 02:00
What is the main benefit of minimizing the ribbon in word? more options will be accessible through customized keystrokes. more of the document will be viewable without needing to scroll. fewer controls will be accessible to the user by using the mouse. fewer editing options will be available without entering a password.
Answers: 1
question
Computers and Technology, 23.06.2019 11:30
Which excel file extension stores automated steps for repetitive tasks?
Answers: 1
question
Computers and Technology, 24.06.2019 08:00
Java the manager of a football stadium wants you to write a program that calculates the total ticket sales after each game
Answers: 1
You know the right answer?
Adding BIG Integers In C++ an int is in the range 0 to 65535. But what if we need to add larger inte...
Questions
question
Mathematics, 05.10.2020 09:01
question
Biology, 05.10.2020 09:01
question
Mathematics, 05.10.2020 09:01
question
Biology, 05.10.2020 09:01
question
Spanish, 05.10.2020 09:01
Questions on the website: 13722361