Lahey Support
08-15-2003, 01:19 AM
Yes, now I found the problem is that integer overflow,
I should use 10.**10 or 10**10.
Thanks
COsine
Jan/23/1999 UT
>>
>>program test
>> implicit none
>> real :: a
>>
>> a = .123456
>> a = a*10**10
> Try
> a = (a*10)**10
>or
> a = a*10.0**10
>
__________________________________________________ ____
Get Your Private, Free Email at http://www.hotmail.com
I should use 10.**10 or 10**10.
Thanks
COsine
Jan/23/1999 UT
>>
>>program test
>> implicit none
>> real :: a
>>
>> a = .123456
>> a = a*10**10
> Try
> a = (a*10)**10
>or
> a = a*10.0**10
>
__________________________________________________ ____
Get Your Private, Free Email at http://www.hotmail.com