Antonio Lapira wrote:
> is there a function to convert for example 2,333333333333333333333333333333333333333333333....33333 into 7/3 ?
> or 2.51212121212121212..1212121212121 into 2487/990 ?
Yes, rat() does that.
rat(2.33333333333333333333);
rat: replaced 2.333333333333333 by 7/3 = 2.333333333333333
rat(2.51212121212121212);
rat: replaced 2.512121212121212 by 829/330 = 2.512121212121212
Ed