0

I am working on a task that consists different operations on very big numbers. Example : Multiplying two 50 digit numbers. That big-sized numbers cannot be handled using C.

Can someone suggest me some programming language that can handle operations on such types of big numbers without using any special type of libraries, so that I can learn that language to implement my algorithm.

Surajeet Bharati
  • 1,363
  • 1
  • 18
  • 36

2 Answers2

2

Python3 can work on very large numbers (you can say it has almost no limit) and that's automatic.

https://stackoverflow.com/a/7604998/3156085

You can try it yourself by entering very large numbers in python shell.

Community
  • 1
  • 1
vmonteco
  • 14,136
  • 15
  • 55
  • 86
1

BigDecimal class from Java can work with large numbers as you need, without using any extra library.

Eduardo Yáñez Parareda
  • 9,126
  • 4
  • 37
  • 50