What programming language will enable me to enter a very long number without converting it to floating point?

后端 未结 14 859
情书的邮戳
情书的邮戳 2020-12-11 21:17

What would be the best way to do the following.

Enter a very long number, lets say 500,000 digits long without it going into scientific notation; and then am able to

14条回答
  •  眼角桃花
    2020-12-11 21:21

    Python does this out of the box with no special library. So does 'bc' (which is a full programming language masquerading as a calculator) for Unix systems.

提交回复
热议问题