Re: working with large integers

2012-01-12 Thread timothy adigun
; ># Add one comma each time through the do-nothing loop >1 while $number =~ s/^(\d+)(\d\d\d)/$1,$2/; >$number; > } > > > Sincerely, > David Kronheim > Production Support Tier II > Gateway Error Correction, VZ450 EDI, EDI Billing, & Metakey/LI

RE: working with large integers

2012-01-11 Thread Kronheim, David (Contr)
timothy adigun [2teezp...@gmail.com] Sent: Saturday, December 31, 2011 4:11 AM To: Jeswin Cc: beginners Subject: Re: working with large integers Hi Jeswin, >>>>> "Shlomi" == Shlomi Fish writes: Shlomi>Hi Jeswin, Shlomi>On Thu, 29 Dec 2011 11:4

Re: working with large integers

2011-12-31 Thread timothy adigun
Hi Jeswin, > "Shlomi" == Shlomi Fish writes: Shlomi>Hi Jeswin, Shlomi>On Thu, 29 Dec 2011 11:40:09 -0500 Shlomi>Jeswin wrote: Shlomi>> Hi, Shlomi>> I'm doing one of the Project Euler exercises which asks the sum of 100 Shlomi>> fifty-digi

Re: working with large integers

2011-12-29 Thread Shlomi Fish
Hi Jeswin, On Thu, 29 Dec 2011 11:40:09 -0500 Jeswin wrote: > Hi, > I'm doing one of the Project Euler exercises which asks the sum of 100 > fifty-digit numbers[1]. My code is 2 parts: > > I open the text file containing the digits and put into an array: > BEGIN_CODE