A simple program that I wrote in C++ that will ask the user to enter a number and then our program will find the sum of two numbers using pointers and classes as our data structure in C++ programming.
If you have some questions about programming, about my work please send me an email at jakerpomperada@gmail.com and jakerpomperada@yahoo.com. People here in the Philippines can contact me at my mobile number 09173084360.
Thank you very much and Happy Programming.
Sample Program Output
Program Listing
#include <iostream>
using namespace std;
class add {
public:
int a,b;
int convert(int *a, int *b )
{
return(*a+*b);
}
};
main() {
add values;
char reply;
while (1) {
system("cls");
cout << "\n\n\t Addition Program Using Class and Pointers ";
cout << "\n\n \t Created By: Mr. Jake R. Pomperada, MAED-IT";
cout << "\n";
cout << "\n\n Enter the first value : ";
cin >> values.a;
cout << "\n Enter the second value : ";
cin >> values.b;
cout << "\n\n";
cout << " The total sum is ";
cout << values.convert(&values.a,&values.b);
cout << ".";
cout <<"\n\n";
cout << " More Y/N :=> ";
cin >> reply;
if (reply == 'N' || reply == 'n') {
cout << "\n\n";
cout << "\t Thank You For Using This Program :-D";
break;
}
}
cout << "\n\n\n\n";
system("pause");
}
No comments:
Post a Comment