Results 1 to 1 of 1
Threaded View
-
2nd Mar 2011, 04:09 PM #1OPMember
Urgent Help Please.
C++ Help Required.
the user puts in some numbers and we read it and store it in reversed.. cuz we need to add the arrays.. and when we r adding we have to make sure if there is a carry we include that and so on.. and let's say the user entered 1 number to be 4 digits and 2nd number to be 4 digits.. and we globally declared that max allowed will be 4 but if their sum end up being 5 digits then we have to give error that it over flows.. and if their sum is within the boundary then print out the sum on the screen
this is what I have for the read function'
PHP Code:bool ReadBigInt(BigInt& num)
{
string s;
cin >> s;
int len = s.length();
if (len > MAX_DIGITS)
return false;
else
for (int i = len - 1; i >= 0; i--)
num.Digits[len-i-1] = s[i] - '0';
return true;
If you can't help me regarding code please tell me some logically points ill try to code myself.Little Girl Reviewed by Little Girl on . Urgent Help Please. C++ Help Required. the user puts in some numbers and we read it and store it in reversed.. cuz we need to add the arrays.. and when we r adding we have to make sure if there is a carry we include that and so on.. and let's say the user entered 1 number to be 4 digits and 2nd number to be 4 digits.. and we globally declared that max allowed will be 4 but if their sum end up being 5 digits then we have to give error that it over flows.. and if their sum is within the boundary then print Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
[VPS] VPS Urgent
By Little Girl in forum ArchiveReplies: 4Last Post: 25th Apr 2011, 02:50 PM -
[URGENT] Need help with my OS!
By cyber-cliff in forum Technical Help Desk SupportReplies: 9Last Post: 19th Jan 2011, 03:34 PM -
Urgent Help !!
By NightMare in forum General DiscussionReplies: 0Last Post: 11th Jan 2011, 12:18 PM -
DNS Help please URGENT
By RoXeN... in forum Technical Help Desk SupportReplies: 7Last Post: 4th Jan 2011, 03:48 AM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...