Forum: C Aug 4th, 2005 |
| Replies: 1 Views: 2,008 is there a data type for a variable to handle as much as 100-digit integer? |
Forum: C++ Aug 2nd, 2005 |
| Replies: 11 Views: 6,871 i would first try to code the idea that i have and if its ok with you guys if i had problem with the code can i ask you again?... thanks for the replies... |
Forum: C++ Aug 1st, 2005 |
| Replies: 11 Views: 6,871 i have already coded the addition, subtraction and multiplication... i just would like to get some ideas from you guys with regards with division... because what i am thinking is very complicated and... |
Forum: C++ Aug 1st, 2005 |
| Replies: 11 Views: 6,871 hello guys, i would like to ask again about this:
i am trying to divide two large-digit numbers (up to say 100 digits) using C. I thought of one approach but trying to code it, it seems so... |
Forum: C Jul 31st, 2005 |
| Replies: 12 Views: 4,600 thanks guys... you're really a great help |
Forum: C Jul 28th, 2005 |
| Replies: 12 Views: 4,600 the user is prompt to enter number 1 and then number 2.
i declared two arrays to handle each digit...
char num1[ MAXDIGITCOUNT ];
char num2[ MAXDIGITCOUNT ];
in my program, i will passed... |
Forum: C Jul 28th, 2005 |
| Replies: 12 Views: 4,600 thanks to you guys but i have a new problem:
the user is prompt to enter number 1 and then number 2.
i declared two arrays to handle each digit...
char num1[ MAXDIGITCOUNT ];
char num2[... |
Forum: C Jul 27th, 2005 |
| Replies: 12 Views: 4,600 actually, i am creating a program to add 2 large-digit numbers up to 80... first you input number 1 (which can be up to 80 digits) next you input number 2 (also can be up to 80 digits)...
when the... |
Forum: C Jul 27th, 2005 |
| Replies: 12 Views: 4,600 i just would like to ask for help regarding my code... my problem is this... the user must enter an 80-digit number...if he enters more than 80 digits, the error "\007Input number must not exceed a... |