Frequently Asked Java Program 09: Find Largest Of 3 Numbers | 2 Different Ways

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 พ.ย. 2024

ความคิดเห็น • 40

  • @swatiwadghane3000
    @swatiwadghane3000 2 ปีที่แล้ว +6

    I am following your tutorial for testing because i am fresher and excellent explanations and very useful for real time interview than you sir

  • @MaxPotion001
    @MaxPotion001 4 ปีที่แล้ว +12

    Or you can use Math.max(a, math.max(b, c))

  • @navneetmittal6022
    @navneetmittal6022 ปีที่แล้ว +4

    Dear sir, Please add more programs in this playlist. Like pyramid problem. These days most of the interviewers asked program from Array and String. Please add more commonly asked interview programs

  • @batidhamu7400
    @batidhamu7400 ปีที่แล้ว +2

    Sir, Your teaching skill is Awesome.

  • @sultanalazzeh63
    @sultanalazzeh63 2 ปีที่แล้ว +1

    int temp = Math.max(num1,num2);
    int max = Math.max(temp,num3);

  • @rumanir
    @rumanir 4 ปีที่แล้ว +2

    Excellent one.Incase a=10,b=10,c=3 which is greater

    • @Bikeranime142
      @Bikeranime142 2 ปีที่แล้ว

      a=b so both are greater

    • @JavaBasics-un9ov
      @JavaBasics-un9ov ปีที่แล้ว

      Output will be 10. It's not returning the larger variable . It returns the value of larger variable.

  • @DeepakSharma-wn9ub
    @DeepakSharma-wn9ub ปีที่แล้ว +1

    Your lectures are so good, I get so focused on the content that I forget to like and comment on the videos. RESPECT🙏🙏

    • @sdetpavan
      @sdetpavan  ปีที่แล้ว +1

      Glad you like them!

  • @abhikatta2883
    @abhikatta2883 7 วันที่ผ่านมา

    Hello People in interviews asking solution from hackerrank,codebase etc.. please do video on datastructure and algorithim based programs

  • @ShrirameshwarPatil-i8l
    @ShrirameshwarPatil-i8l ปีที่แล้ว

    we can also solve this problem by nested if else statement . BTW nice explanation

  • @mohanrammanikandan7939
    @mohanrammanikandan7939 2 ปีที่แล้ว +2

    Excellent sir.

  • @shubhamshende9995
    @shubhamshende9995 ปีที่แล้ว +1

    Amazing 🎉

  • @Sultan_Momin_MD
    @Sultan_Momin_MD 2 ปีที่แล้ว

    int max=a>b?(a>c?a:c):(b>c?b:c);
    System.out.println(max);
    I think its also valid

  • @mersalmuki6563
    @mersalmuki6563 2 ปีที่แล้ว +3

    You are vera level sirrrrrr 🔥🔥🔥

  • @Paplu4949
    @Paplu4949 4 หลายเดือนก่อน

    Thank you again🙏 Sir kyunki mujhe code likhna nhi ata.

  • @nadahm1201
    @nadahm1201 9 หลายเดือนก่อน +1

    thanks

    • @sdetpavan
      @sdetpavan  9 หลายเดือนก่อน

      Welcome

  • @jasroopsinghreel
    @jasroopsinghreel 4 ปีที่แล้ว +1

    Awesome sir

  • @roopadolli1910
    @roopadolli1910 5 ปีที่แล้ว +1

    Nice sir...

  • @abdulbasit0123
    @abdulbasit0123 3 ปีที่แล้ว +1

    WoW great!

  • @manojarya7676
    @manojarya7676 2 ปีที่แล้ว

    In the first method if I give my inputs as a=50,b=50,c=50 it doesn't give proper output.

  • @varnaramkorepu7450
    @varnaramkorepu7450 2 ปีที่แล้ว

    hi sir am following all your tutorials excellent sir can you make a clear list the same way which u have prepared in this way on selenium also tq sir

  • @gaidonsichone4803
    @gaidonsichone4803 2 ปีที่แล้ว

    Am stuck with the "else" part of the code saying syntax error

  • @durgadevim6702
    @durgadevim6702 2 ปีที่แล้ว +2

    import java.util.Scanner;
    public class Main {
    public static void main(String args[])
    {
    Scanner obj=new Scanner(System.in);
    System.out.println("Enter you number1 : ");
    int a=obj.nextInt();
    System.out.println("Enter you number2 : ");
    int b=obj.nextInt();
    System.out.println("Enter you number3 : ");
    int c=obj.nextInt();
    if(a>b)
    System.out.println("Largest number:"+a);
    else if (b>c)
    System.out.println("Largest number:"+b);
    else
    System.out.println("Largest number:"+c);
    }
    }
    This one also working.. is it correct..?

    • @saikrishna72860
      @saikrishna72860 2 ปีที่แล้ว

      I have one doubt in this , we a=10,b=5,c=20 . In your if statement à>b , so it prints a is greatest . It did not check for c

    • @Raj-ql2vz
      @Raj-ql2vz 2 ปีที่แล้ว

      No its wrong you have to compare all two values with the third val i mean a should be cmpared with b & C both

    • @sivalib3023
      @sivalib3023 ปีที่แล้ว

      u have to compare 2 values using and & operator

  • @mrb7931
    @mrb7931 ปีที่แล้ว

    import java.util.Scanner;
    public class LargestOf3Numbers {
    public static void main(String args[]) {
    Scanner sc = new Scanner(System.in);
    System.out.println("Enter first number:");
    int a = sc.nextInt();
    System.out.println("Enter second number:");
    int b = sc.nextInt();
    System.out.println("Enter third number:");
    int c = sc.nextInt();
    if((a>b)&(a>c)){
    System.out.println(a+" is the Largest number");
    }
    else if((b>a)&(b>c)){
    System.out.println(b+" is the Largest number");
    }
    else {
    System.out.println(c+" is the Largest number");
    }
    }
    }