An open API service indexing awesome lists of open source software.

https://github.com/dinhanhx/big-number-process

big-number-process is code in Java for storing and operating gigantic numbers.
https://github.com/dinhanhx/big-number-process

beginner gigantic idle-game java numbers processing support

Last synced: about 1 month ago
JSON representation

big-number-process is code in Java for storing and operating gigantic numbers.

Awesome Lists containing this project

README

          

# Big number process
Created by Vu Dinh Anh on October 8th 2019
## Purpose:
I have coded some Java classes for people who want to process gigantic numbers without losing data.
## How to use:
Open file "DriveCode.java" where I have written all examples and instructions.
There are suffixes but only upto Novendecillion. If your number is larger than Novendecillion, it will use SNF (Suffix Not Found).
## BigNum class methods:
- public void setNumber(ArrayList number)
- public ArrayList getNumber()
- public void setNumtxt(String numtxt)
- public void displayNumber()
- public void displayNumberExtra()
## BigOper class methods:
- public ArrayList addition(ArrayList num1, ArrayList num2)
- public ArrayList subtraction(ArrayList num1, ArrayList num2)
- public ArrayList multiplication(ArrayList num1, ArrayList num2)
- public ArrayList division(ArrayList num1, ArrayList num2)
- public ArrayList returnR()
## Note:
There are methods to check which one is bigger and they are equal or not.