![]() |
need help asap!!!on a problem!!!!
can u help me on this prob..:(
LARGE NUMBER For the purposes of this problem we will define a large number as a positive whole number with at least eight digits. For example, 123456789 is a large number. Large numbers must NOT be expressed in exponential form. Write a program that: (1) asks for two inputs. WHAT IS THE FIRST LARGE NUMBER? WHAT IS THE SECOND LARGE NUMBER? and (2) then calculates the product of your two large numbers and prints; THE PRODUCT OF your first large number AND your second large number IS the calculated product. Test your program with 1234512345123451234512345 as your first large number and 9876598765987659876598765 as your second large number. Code:
#include<iostream> |
Re: need help asap!!!on a problem!!!!
I'm not going to do your homework for you, but. I think the main problem is the way you are trying to store the large number.
Do you understand what this problem is trying to teach you? you cannot store a really large number as an integer. so your cin line is not going to work. you need to come up with a better way of handling the integers and doing the addition/handling overflow. |
Re: need help asap!!!on a problem!!!!
declare
the array as int long arr[mes]; int long ar2r[size]; |
Re: need help asap!!!on a problem!!!!
As per my knowledge I would suggest you that don't try to store large number.
|
Re: need help asap!!!on a problem!!!!
I think you should treat the numbers as arrays of signed characters. Take the ordinary manual multiplication method and implement it on this data layout. For example, your algorithm will start with the least significant (rightmost) digit and multiply it by each digit in the other number, summing and computing carry as it goes.
You can also consider using Karatsuba's Algorithm, you'll find a lot on internet for Karatsuba's Algorithm |
Re: need help asap!!!on a problem!!!!
Just use "double" as your variable decleration.
|
Re: need help asap!!!on a problem!!!!
i think even double and long double will reach their limits at a point.
|
| All times are GMT +5.5. The time now is 18:06. |