Showing posts with label Greater Number Using Conditional Operator. Show all posts
Showing posts with label Greater Number Using Conditional Operator. Show all posts

Friday, June 5, 2020

Write a program in java to find Greatest Number in three number using conditional operator.

13)   Write a program in java to find Greatest Number in three number using       conditional operator.

import java.util.*;

public class greater_in_three_using_conditional_operator

{

    public static void main(String args[ ])

    {

        Scanner sc = new Scanner (System.in);

        System.out.println("Enter three numbers");

        int a = sc.nextInt();

        int b = sc.nextInt();

        int c = sc.nextInt();

        int d = (a>b)? (a>c)?a:c : (b>c)?b:c ;

        System.out.println("Greater num = "+d);

    }

}

Thursday, June 4, 2020

Write a program in java to input two numbers and find the Greater Number using conditional operator.

7)  Write a program in java to input two numbers and find the Greater Number using conditional operator.

import java.util.*;
public class greater_using_conditional_operator
{
    public static void main( String args [ ] )
    {
        Scanner sc = new Scanner (System.in);
        System.out.println("Enter two numbers");
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = (a>b)?a:b;
        System.out.println("Greater num = "+c);
    }
}

 jhvghvgk ;nkjn ,nkjhj