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.
- Host: GitHub
- URL: https://github.com/dinhanhx/big-number-process
- Owner: dinhanhx
- License: mit
- Created: 2019-10-08T12:23:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-18T02:28:08.000Z (about 6 years ago)
- Last Synced: 2025-03-23T18:12:40.912Z (about 1 year ago)
- Topics: beginner, gigantic, idle-game, java, numbers, processing, support
- Language: Java
- Homepage:
- Size: 28.3 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.