Skip to content

JackTesla/BigDecimal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

BigDecimal

This is a simple big decimal library implementation on C/C++.
It's very easy to use in C/C++ project.

Usage:

#include "BigDecimal.cpp"
...
BigDecimal a(1), b(3.14);
BigDecimal c;
c=a*b;
c=a+b;
c=a/b;
c=a-b;
c.show();

About

A large number calculation library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages