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

Biggest and smallest from three given numbers in c++

admin by admin
February 4, 2019
Reading Time:4min read
0
Hello friends! Welcome to my website
C++ programming to find the biggest and the smallest number between two numbers?
This c++ language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.

Find the biggest and the smallest number from three given numbers in c++

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

#include <iostream>
#include <cmath>
using namespace std;

class Test {
public:
    int a, b,c;

    void biggest(int a, int b, int c) {
       if(a>b && a>c){
   cout<<a <<“if biggest than “<< b <<” and ” <<c;
   }
   else if(b>a && b>c){
   cout<<b <<“if biggest than “<< a <<” and ” <<c;
   }
   else{
        cout<<c <<“if biggest than “<< a <<” and ” <<b;
   }
    }
void smallest(int a, int b, int c) {
       if(a<b && a<c){
   cout<<a <<“if smallest than “<< b <<” and ” <<c;
   }
   else if(b<a && b<c){
   cout<<b <<“if smallest than “<< a <<” and ” <<c;
   }
   else{
        cout<<c <<“if smallest than “<< a <<” and ” <<b;
   }
    }
};

int main() {

    Test o;
    cout << “Please Enter the frist number: “;
    cin >> o.a;
    cout << “Please Enter the second Number: “;
    cin >> o.b;
cout << “Please Enter the third Number: “;
    cin >> o.b;
    cout <<“—————–” << endl;
o.biggest(o.a, o.b, o.c);
    cout <<“—————–” <<endl;
    o.biggest(o.a, o.b, o.c);
    return 0;
}

  Output:
    Please Enter the frsit number: 12
Please Enter the second number: 15
Please Enter the third number: 11
—————–
15 is  biggest than 12 and 11
—————–
11 is  smallest than 12 and 15

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 doubt about this c++ programming code or input & output please comment below
If you have another question about c++ programming send an email by contacting us form is given on the page right side.

Please share your experience about this post,
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

Find a year is a leap year or not in c++

Find grade of a student according to their percentage in c 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.