Thursday, September 19, 2019

C++ Language Program for Addition of Two Numbers.

BACHELOR OF COMPUTER APPLICATION (B.C.A.) FIRST SEMESTER
Here you will get simple C++ program 

C++ Language Program for Addition of Two Numbers.


IT IS THE SMALLEST LOGIC USED FOR CODING OF THIS PROGRAM.

IN WHICH YOU CAN CREATE OWN VARIABLES AND FUNCTIONS.

User will input Two Numbers and that Numbers is Added by Logic, Then it Addition will be display on screen.

The program coding is given below.

#include <iostream.h>
#include <conio.h>
class Add
{
int a,b,c;
public:
void getdata()
{
cout<<"Enter Two Number=";
cin>>a>>b;
}
void display()
{
c=a+b;
cout<<"Addition is = "<<c;
}
};
void main()
{
clrscr();
Add a1;
a1.getdata();
a1.display();
getch();
}

Output will be given after you compile it.

No comments:

Post a Comment