Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MahmoudRizk authored Mar 6, 2017
1 parent 7846e33 commit 5f160ac
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* [Addition](#addition)
* [Subtraction](#subtraction)
* [Multiplication](#multiplication)
* [Division](#division)
* [Allocation](#allocation)
* [Comparison](#comparison)
* [Access](#access)
Expand Down Expand Up @@ -46,6 +47,17 @@ c *= a;
c = a * 6;
c *= 6;
```
##Division
```C++
Dodecahedron::Bigint a,b;
std::vector<Bigint> c;
Dodecahedron::Bigint quotient, remainder ;

c = a / b;

quotient = c[0];
remainder = c[1];
```
##Allocation
```C++
Dodecahedron::Bigint a = 12345;
Expand Down

0 comments on commit 5f160ac

Please sign in to comment.