[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Comment about IEEE floating-point rounding... (was: Setting Float Precision in Lua.c)
- From: Javier Guerra Giraldez <javier@...>
- Date: Tue, 26 Jun 2018 14:28:48 +0100
On 26 June 2018 at 12:42, Viacheslav Usov <via.usov@gmail.com> wrote:
> On Tue, Jun 26, 2018 at 11:52 AM Dirk Laurie <dirk.laurie@gmail.com> wrote:
>
>> 1e97 mod 97
> The stock PowerShell interpreters on those Windows systems and Python 3.6.5,
> all produce 3, even though I tried to convince them to use their big int
> facilities. But I am not too fluent with those, so perhaps that can still be
> done.
python: 10**97 % 97
same in bc: 10^97 % 97
--
Javier