Question
Write a program that reads a number between 0 and 999,999,999,999 from the user, where the user enters a comma in the input. Then print
Write a program that reads a number between 0 and 999,999,999,999 from the user, where the user enters a comma in the input. Then print the number without a comma. You should assume the user will give you a number with the commas where they should be. You may NOT use stoi, atoi, stringstream, or any includes other than cmath and string.
Hint: Read the input as a string and loop over the string. Store the result in a long long variable.
One way to do this is to convert to integer one character at a time.
For example:
string s = "324,126"; int i = s.at(2) - '0'; //This will output the integer 4, since it is the 2nd character //(first being character 0) cout << i;
The - 0 is a trick to convert from ASCII to decimal. See Ascii Table.
-- Please use C++ --
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started