CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
Celebrating my 50th Code in Sololearn. (Yay!).
A program to Primitively declare a type that can handle large numbers (I really mean large), with some ease.
Uses an array to store a number. Can easily store 10000!. (Calculates in 12s).
Can even perform basic calculation on such numbers.
Eg -
4623153475976677456845656904568048708080483
475746745760845684586563554674575797
divided by 57495873497564567 =
804084396799799349829999448145352763912697
41602137151659153456, calculated in 0.152s
All suggestions for improvement or addition of new features are welcome.
Created by - Kinshuk Vasisht
*/
/// ///////////////////////////////////////
/// BigInt Numbers in C++
/// ///////////////////////////////////////
///
/// Made By - Kinshuk Vasisht
/// Version - v1.5
/// Status - 0xFFFFF0
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run