//Cpp Program to Add Two Numbers using Class
#include <iostream>
using namespace std;
class SumWithClassDemo
{
public :
void Add(int a,int b)
{
int total;
total=a+b;
cout<<"Total= "<<total;
}
};
int main()
{
int x=3,y=4;
SumWithClassDemo s;
s.Add(x,y);
return 0;
}
//=====Program 2=====
//Cpp Program to Add Two Numbers using Class
//==================
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
int sum;
cout << "Insert two numbers to be added: "<<endl;
cin >> x;
cout<<"Enter second No: "<<endl;
cin>> y;
sum = x + y;
cout <<"Sum is: "<<sum<<endl;
return 0;
}
Simplest Way to learn Data Structure in C++ CPP or C
C++ Program for Circular Queue implementation using linked list
C++ program for Circular Queue implementation using Array
C++ program for reversing single Linked list nodes
C++ Program for sorted single linked list with class
C++ Program for BST-Binary Search Tree
//How to Use Class to Add Two Numbers in C++
//How to Use Class to Add Two Numbers in C++
//How to Use Class to Add Two Numbers in C++
//How to Use Class to Add Two Numbers in C++
//C++ Program to Add Two Numbers using Class
//C++ Program to Add Two Numbers using Class
//C++ Program to Add Two Numbers using Class
#include <iostream>
using namespace std;
class SumWithClassDemo
{
public :
void Add(int a,int b)
{
int total;
total=a+b;
cout<<"Total= "<<total;
}
};
int main()
{
int x=3,y=4;
SumWithClassDemo s;
s.Add(x,y);
return 0;
}
//=====Program 2=====
//Cpp Program to Add Two Numbers using Class
//==================
#include <iostream>
using namespace std;
int main()
{
int x;
int y;
int sum;
cout << "Insert two numbers to be added: "<<endl;
cin >> x;
cout<<"Enter second No: "<<endl;
cin>> y;
sum = x + y;
cout <<"Sum is: "<<sum<<endl;
return 0;
}
Simplest Way to learn Data Structure in C++ CPP or C
C++ Program for Circular Queue implementation using linked list
C++ program for Circular Queue implementation using Array
C++ program for reversing single Linked list nodes
C++ Program for sorted single linked list with class
C++ Program for BST-Binary Search Tree
//How to Use Class to Add Two Numbers in C++
//How to Use Class to Add Two Numbers in C++
//How to Use Class to Add Two Numbers in C++
//How to Use Class to Add Two Numbers in C++
//C++ Program to Add Two Numbers using Class
//C++ Program to Add Two Numbers using Class
//C++ Program to Add Two Numbers using Class
No comments:
Post a Comment