Site icon T4Tutorials.com

Program to find greater number among three numbers in c++ and C with flowchart

Program to find a greater number among three numbers in c++ and C with the flowchart.

Flowchart of a program to find a greater number among three numbers

Flowchart to find greatest number among three numbers program in c++, C, CPP
Figure: Flowchart of a program to find the greatest number of three numbers.

 

 

 

 

 

 

 

 

 

 

 

 

Program to find greater number among three numbers in c++

#include<conio.h>
#include<iostream>
using namespace std;
int main()
{
int x;
int y; 
int z;
cout <<"Put any three numbers: ";
cin>>x;
cin>>y;
cin>>z;
if(x>=y && x>=z) 
{
cout<<"The Largest number is: "<<x;
}
if(y>=x && y>=z) 
{
cout<<"The Largest number is: "<<y;
}
if(z>=x && z>=y) 
{
cout<<"The Largest number is: "<<z;
}
return 0;
}

Output

Program to find greater number among three numbers in c++ and C with flowchart
Figure: Program to find greater number among three numbers in c++ and C with a flowchart.

 

 

 

 

 

 

 
YouTube video player

greater number program in C++

Video Lecture



Program to find greater number among three numbers in C

#include <stdio.h>
int main()
{
    double x, y, z;

    printf("Put three different numbers: ");
    scanf("%lf %lf %lf", &x, &y, &z);

    if( x>=y && x>=z )
        printf("%.2f is the largest number.", x);

    if( y>=x && y>=z )
        printf("%.2f is the largest number.", y);

    if( z>=x && z>=y )
        printf("%.2f is the largest number.", z);

    return 0;
}

Output

Program to find greater number among three numbers in c++ and C with flowchart
Figure: Program to find greater number among three numbers in c++ and C with a flowchart.

C++ Exercise | If else Statement

  1. calculate the bill
  2. character is small, capital or a special character
  3. a number is even or odd
  4. 0 is a positive or negative number
  5. a positive and negative number
  6. Enter Range of numbers and replaced them
  7. a greater number among three numbers
  8. Armstrong Number
  9. ASCII code 
  10. Find the Maximum value program in C++ (C Plus Plus).
  11. maximum number
  12. Maximum Number between two numbers 
  13. Student Grade
  14. the number is divisible by 11 or 5 or not
  15. Triangle 
  16. a triangle is an equilateral, isosceles or scalene
  17. Leap year 
  18. character is an alphabet or not
  19. Grade Percentage
  20. character is an alphabet, digit, or special character
  21. character is an uppercase or lowercase.
  22. Weekdays
  23. a prime or composite number
  24. hours and minutes as  AM or PM
  25. swap the values of two numbers
  26. update even to odd
  27. Profit Loss
  28. centimeter into meter and kilometer 
  29. Triangle 
  30. Salary
  31. Even odd with goto statement.
  32. area of the circle
Exit mobile version