Home

Wednesday, January 21, 2015

C++ Programs for performing binary ADDITION

/*
C++ Program for performing binary ADDITION by converting it into decimal.
*/
 
# include <iostream>
using namespace std;
 
int decimal(unsigned int);
long long Binary(int);
 
int main()
{
    unsigned int binary1, binary2;
    long long binary;
    int temp1, temp2, sum, tempA, tempB;
    bool flag;
 
    //Input Statement's
    do
    {
        flag = 0;
 
        cout << "Enter 1st binary number:\t";
        cin >> binary1;
        cout << "Enter 2nd binary number:\t";
        cin >> binary2;
 
        tempA = binary1;
        tempB = binary2;
 
        while (tempA != 0)
        {
            if (tempA % 10 > 1)
                flag = 1;
            tempA /= 10;
        }
 
        while (tempB != 0)
        {
            if (tempB % 10 > 1)
                flag = 1;
            tempB /= 10;
        }
 
        if (flag)
            cout << "Invalid Input....\n";
    } while (flag);        //bound's input for only binary numbers
    
    temp1 = decimal(binary1);
    temp2 = decimal(binary2);
    sum = temp1+temp2;
    binary = Binary(sum);
 
    cout << "SUM of " << binary1 << " & " << binary2 << " is:\n\t\t" << binary;
    cout << endl;
    return 0;
}
 
int decimal(unsigned int num)
{
    int rem, decimal = 0, i = 0;
    while (num > 0)
    {
        rem = num % 10;
        decimal = decimal + (rem*  pow(2, i));
        i++;
        num /= 10;
    }
    return decimal;
}
 
long long Binary(int num)
{
    int rem;
    long long binary = 0, i = 1;
    do
    {
        rem = num % 2;
        binary = binary + (i*rem);
        num = num / 2;
        i = i * 10;
    } while (num>0);
    return binary;
} 
 
OUTPUT 


/*
C++ Program for performing Binary ADDITION.
*/
 
#include<iostream>
using namespace std;
 
int main()
{
    long long binary1, binary2, temp1, temp2, tempA, tempB, sum = 0, i = 1;
    int remainder = 0;
    bool flag;
 
    //Input Statement's
    do
    {
        flag = 0;
        
        cout << "Enter 1st binary number:\t";
        cin >> binary1;
        cout << "Enter 2nd binary number:\t";
        cin >> binary2;
        
        tempA = binary1;
        tempB = binary2;
        
        while (tempA != 0)
        {
            if (tempA % 10 > 1)
                flag = 1;
            tempA /= 10;
        }
 
        while (tempB != 0)
        {
            if (tempB % 10 > 1)
                flag = 1;
            tempB /= 10;
        }
        
        if (flag)
            cout << "Invalid Input....\n";
    } while (flag);        //bound's input for only binary numbers
 
    
    temp1 = binary1;
    temp2 = binary2;
 
    //(Not necessary) For formatting output
    for (int i = 1; i <= 80; i++)
        cout << "=";
 
    //for calculating sum
    while (binary1 != 0 || binary2 != 0)
    {
        sum = sum + (i*((binary1 % 10 + binary2 % 10 + remainder) % 2));
        remainder = (binary1 % 10 + binary2 % 10 + remainder) / 2;
        i *= 10;
        binary1 = binary1 / 10;
        binary2 = binary2 / 10;
    }
 
    if (remainder != 0)                //if remainder is 1 then
        sum = sum + (i*remainder);
 
    cout << "Sum of Binary Numbers " << temp1 << " & " << temp2 << " is:\n\t";
    cout << temp1 << " + " << temp2 << " =  " << sum; //display's sum
 
    cout << endl;
    return 0;
}
OUTPUT

No comments:

Post a Comment