Skip to content

aavishkarmishra/bigint.h

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Usage

Download the "bigint.h" header .Then #include it inside your code:

Command to compile cpp files g++ bigint.hpp bigint.cpp SampleCode.cpp

#include "bigint.h"   // the actual path may vary

Declaring A Variable

    bigint n1;                                  //n1 defined with value 0
    bigint n2(123);                             //n2 defined with value int value
    bigint n3((long long int)1234567898765432); //n3 defined with value long long int value
    bigint n4("7832467326423873423435");        //n4 defined with string value
    bigint n5(n3);                              //n5 defined with values of n3

Converting to Numbers

    bigint n6 = bigint::to_bigint(num1); //converting int to bigint
    bigint n7 = bigint::to_bigint(num2); //converting long long int to bigint
    bigint n8 = bigint::to_bigint(str1); //converting string to bigint

Arithmatic Operations

    cout << "Addition: " << n1 + n2 << endl;       //Addition
    cout << "Subtraction: " << n2 - n1 << endl;    //subtraction
    cout << "Multiplication: " << n1 * n2 << endl; //Multiplication
    cout << "Division: " << n4 / n2 << endl;       //Division

    cout << "n2 + 5: " << n2 + 5 << endl;
    cout << "n2 - 5: " << n2 - 5 << endl;
    cout << "n2 * 5: " << n2 * 5 << endl;
    cout << "n2 / 5: " << n2 / 5 << endl;

    cout << "5 + n2: " << 5 + n2 << endl;
    cout << "5 - n2: " << 5 - n2 << endl;
    cout << "5 * n2: " << 5 * n2 << endl;
    cout << "5 / n2: " << 5 / n2 << endl;

Other Operations

unary operations

    cout<<"PreIncrement: "<<++n2<<endl;
    cout<<"PreDecrement: "<<--n2<<endl;
    cout<<"PostIncrement: "<<n2++<<endl;
    cout<<"PostDecrement: "<<n2--<<endl;

equality check

    cout<<"Check n3 != n5: "<<(bool)(n3 != n5)<<endl;            //Checking if value of both are different
    cout<<"Check n3 == n5: "<<(bool)(n3 == n5)<<endl;            //Checking if value of both are same

few other operators

    n3 += n2;
    cout<<"n3 += n2: "<<n3<<endl;

    n3 -= n2;
    cout<<"n3 -= n2: "<<n3<<endl;

    n3 *= n2;
    cout<<"n3 *= n2: "<<n3<<endl;

    n3 /= n2;
    cout<<"n3 /= n2: "<<n3<<endl;

Functions

    cout << "Maximum: " << bigint::max(n1, n2) << endl;                           //Maximum of two Numbers
    cout << "Minimum: " << bigint::min(n1, n2) << endl;                           //Minimum of two Numbers
    cout << "absolute: " << bigint::abs(n1) << " " << bigint::abs(n2) << endl;    //Absolute value of a number
    cout << "Factorial: " << bigint::fact(n1) << " " << bigint::fact(n2) << endl; //Factorial of a number
    cout << "Reverse: " << bigint::reverse(n3) << endl;                           //Reverse a number
    cout << "isPalindrome: " << (bool)bigint::isPalindrome(n9) << endl;           //Checking if a number is palindrome
    cout << "Power: " << bigint::pow(n3, n2) << endl;                          //finds int(X) to the power int(Y)

Languages

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy