category

Cpp program to biggest and smallest of three numbers

Cpp program to biggest and smallest of three numbers

In this program, we will discuss a simple concept of program to find the smallest and largest number among three numbers in the Cpp programming language.

In this topic, we learn how to find the smallest and biggest number from given three numbers using if- elseif else statements.

find largest and smallest among three numbers

Find the largest and smallest number Using if statements

Find among integer numbers

Program 1

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    int num1,num2,num3;  //declare the variables

    cout << "Enter the first number: ";
    cin>>num1;//get input from user for num1
    cout << "Enter the second number: ";
    cin>>num2;//get input from user for num2
    cout << "Enter the third number: ";
    cin>>num3;//get input from user for num3

    cout<<"\n\nThe biggest number is: ";
    if((num1>num2)&&(num1>num3)){
        cout<<num1;
    }
    else if(num2>num3){
       cout<<num2;
    }
    else{
        cout<<num3;
    }

    cout<<"\n\nThe smallest number is: ";
    if((num1<num2)&&(num1<num3)){
        cout<<num1;
    }
    else if(num2<num3){
        cout<<num2;
    }
    else{
        cout<<num3;
    }

    getch();
    return 0;
}

When the above code is compiled and executed, it produces the following results

Enter the first number: 34
Enter the second number: 12
Enter the third number: 67

The biggest number is: 67

The smallest number is: 12

 

Find among float numbers

Program 2

#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    float num1,num2,num3;  //declare the variables

    cout << "Enter the first number: ";
    cin>>num1;//get input from user for num1
    cout << "Enter the second number: ";
    cin>>num2;//get input from user for num2
    cout << "Enter the third number: ";
    cin>>num3;//get input from user for num3

    cout<<"\n\nThe biggest number is";
    if((num1>num2)&&(num1>num3)){
        cout<<num1;
    }
    else if(num2>num3){
       cout<<num2;
    }
    else{
        cout<<num3;
    }

    cout<<"\n\nThe smallest number is";
    if((num1<num2)&&(num1<num3)){
        cout<<num1;
    }
    else if(num2<num3){
        cout<<num2;
    }
    else{
        cout<<num3;
    }

    getch();
    return 0;
}


When the above code is compiled and executed, it produces the following results

Enter the first number: 34.75
Enter the second number:76.34
Enter the third number:87.67

The biggest number is 87.67
The smallest number is 34.76

 

Suggested for you

Data type in C++

Operator in C++

If statements in C++

Cpp program to display smallest number of an Array
Cpp Program to display smallest among three numbers
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago