Skip to content

Калькулятор для BigInt чисел в C++. Работает как с отрицательными, так и с положительными числами.

Notifications You must be signed in to change notification settings

ppxxd/BigIntCalculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BigIntCalculator

Info

This is calculator created for BigInt numbers in C++. Works with negative and positive numbers.

Contents

Actions

Except operators shown below. There are operators like i--, i++, bool ones and output/input. Operators like *= are also overloaded.

BigNumber first("100000000")      #Example
BigNumber second ("200")          #Example

first + second;                   #Addition                
//Output: 100000200;

first - second;                   #Subtraction
//Output: 99999800;

first * second;                   #Multiplication
//Output: 20000000000;

first / second;                   #Division
//Output: 500000;

first % second;                   #Modulus
//Output: 0;

first ±                          #Unary minus
//Output: -100000000;
  
AC                                #Clears the number inputed
//Output: ;

About

Калькулятор для BigInt чисел в C++. Работает как с отрицательными, так и с положительными числами.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published