Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us
No Result
View All Result
Programming Shortcut - c, c++, java, SQL, online tutorials
No Result
View All Result
Home Programs in cpp

Arithmetic operation by class and object in c++

admin by admin
April 16, 2020
Reading Time:2min read
0

RELATED POSTS

Program to find out the grade and percentage calculator in cpp

How to find quotient and remainder in c++ program

Mathematical expressions in C++ language

Hello friends! Welcome to my website
How to make a c++ programming for basic arithmetic operation by Class and Object?
What is class and object in c++
This c++ language programming is free all type of errors like compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code only with their output.This programming output is highly optimised to output understood easily

How to make basic arithmetic operation by class and object in c++ programming

//—-Start-Code—-
#include <iostream>
#include <cmath>
using namespace std;class Test {
public:
double a, b;

void add(double a, double b) {
double result;
result = a + b;
cout << a << ” + ” << b << ” = ” << result << endl;
}

void subtract(double a, double b) {
double result;
result = a – b;
cout << a << ” – ” << b << ” = ” << result << endl;
}

void multiply(double a, double b) {
double result;
result = a*b;
cout << a << ” * ” << b << ” = ” << result << endl;
}

void divide(double a, double b) {
double result;
result = a / b;
cout << a << ” / ” << b << ” = ” << result << endl;
}
};

int main() {

Test o;
cout << “Enter the frist number: “;
cin >> o.a;
cout << “Enter the second Number: “;
cin >> o.b;
cout << “This is following:” << endl;
o.add(o.a, o.b);
o.subtract(o.a, o.b);
o.multiply(o.a, o.b);
o.divide(o.a, o.b);

return 0;
}
//—-End code—-

Output:  Enter the first number: 5
Enter the second Number: 4
Result:
5 + 4 = 9
5 – 4 = 1
5 * 4 = 20
5 / 4 = 1.25
Note: double is a type of variable that supports to decimal values.I Use double for Store all result
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any dought about this c++ programming code or input & output please comment below
If you have other question about c++ programming send an email by contacting us form are given on page right side.
Thank You!
ShareTweetPin
admin

admin

Related Posts

Program to find out the grade and percentage calculator in cpp
Programming Language

Program to find out the grade and percentage calculator in cpp

March 7, 2022
Programs in cpp

How to find quotient and remainder in c++ program

April 21, 2020
Programs in cpp

Mathematical expressions in C++ language

April 21, 2020
Programming Language

Difference and similarities between java and c++

April 3, 2022
.Net

Difference between FOPs and OOPs

April 16, 2020
Programming Language

How to start learning the first programming language

February 9, 2020
Next Post

Bigger and smaller number in c++

Find Bigger and Smaller number by Java Programming

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

I agree to the Terms & Conditions and Privacy Policy.

Popular Stories

  • Short name by java program

    0 shares
    Share 0 Tweet 0
  • Relation of two numbers in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c programming

    0 shares
    Share 0 Tweet 0
  • Bigger and smaller number in c++

    0 shares
    Share 0 Tweet 0
  • Java program to perform sum of digits until single digit is obtained

    0 shares
    Share 0 Tweet 0
ADVERTISEMENT
C, C++ & Java Programming tutorial with example Programming Shortcut

Hi Friends, Programming Shortcut is Educational Blog, that From you Learn Programming in Multiple languages like C, C++, Java Programming Language.

LEARN MORE »

Recent Posts

  • Armstrong number in c
  • Program to find out code of grade and percentage calculator in Java
  • Program to find out the grade and percentage calculator in cpp

Categories

  • .Net
  • Programming Language
  • Programs in c
  • Programs in cpp
  • Programs in java
  • Uncategorized

All © 2021 Programming Shortcut - Present By Math Training.

No Result
View All Result
  • Home
  • About us
  • Programs in c
  • Programs in cpp
  • Programs in java
  • .Net
  • Privacy Policy
  • Contact Us

All © 2021 Programming Shortcut - Present By Math Training.

This website uses cookies. By continuing to use this website you are giving consent to cookies being used. Visit our Privacy and Cookie Policy.