Re: how to add two no. of 100 digits or more?
- From: CBFalconer <cbfalconer@xxxxxxxxx>
- Date: Fri, 01 Jun 2007 03:06:38 -0400
Tak wrote:
Umesh <fraternitydispo...@xxxxxxxxx> wrote:
Is there any way by which i can do it? Thanks.
#include<iostream>
#include<string>
#include<iomanip>
#include<algorithm>
using namespace std;
#define MAXN 9999
#define DLEN 4
class BigNum
{
private:
int a[500];//¿ÉÒÔ¿ØÖÆ´óÊýµÄλÊý
int len; //´óÊý³¤¶È
public:
BigNum(){len = 1;memset(a,0,sizeof(a));}
This has nothing to do with the C language.
--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
<http://kadaitcha.cx/vista/dogsbreakfast/index.html>
cbfalconer at maineline dot net
--
Posted via a free Usenet account from http://www.teranews.com
.
- References:
- Prev by Date: Casting int'** to 'const int * const * const' dosn't work, why?
- Next by Date: Re: normalization of pointers...
- Previous by thread: Re: how to add two no. of 100 digits or more?
- Next by thread: Re: how to add two no. of 100 digits or more?
- Index(es):
Relevant Pages
|