Find greatest number from three number's

Write a program to find the greatest of three numbers.

Example 1:

Input : a=3, b=7,c=2
Output: 7 is greatest number

Approach

Java

public class GreatestNumber {
    public static void main(String[] args) {

        int a = 3, b = 7, c = 2;
        int greatest = findGreatest(a, b, c);
        System.out.println("Greatest number is " + greatest);

    }

    private static int findGreatest(int aint bint c) {
        if (a > b && a > c)
            return a;
        else if (b > a && b > c)
            return b;
        return c;
    }
}

C++

#include <bits/stdc++.h>
using namespace std;
//function to find greatest of three
//numbers
int findGreatest(int a,int b,int c)
{
    //if a is greate  than or eqaul to 
    // both b and c
    if(a>=b&&a>=c)
      return a;
    //if b is greater than or equal to 
    //both a and c
    else if(b>=a&&b>=c)
       return b;
    //if c is greater than or equal to 
    //both b and c
    return c;
}
int main()
{
    int a=3,b=7,c=2;
    int greatest=findGreatest(a,b,c);
    cout<<"Greatest is ";
    cout<<greatest<<"\n";
    return 0;
}


No comments:

Post a Comment