add two binary numbers in java | java tutorial for beginners

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

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

  • @xelgringox
    @xelgringox 7 ปีที่แล้ว +6

    Thanks for posting this. It was very helpful and not as complicated as other videos I had previously viewed.

    • @MicroNG
      @MicroNG  3 ปีที่แล้ว

      Thank you

  • @Pavan_Gaekwad
    @Pavan_Gaekwad 5 หลายเดือนก่อน

    Thanks for the explaination.

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

    This was simplified and very helpful. Good teacher!!!

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

      Thank u

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

    Nice and easy solution thanks

    • @MicroNG
      @MicroNG  4 ปีที่แล้ว

      Thank u Kiran for ur feedback

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

    Easy solution...
    Tnx... 😍

  • @Ritik-io7of
    @Ritik-io7of 9 หลายเดือนก่อน

    cant we do this code without the use of the wrapper class

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

    WHAT, bro thank you so much I been studying one code to add binary numbers and it so complicated compare to yours.

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

      Good to hear from you

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

    what is the function of parseint and tobinarystring? plz tell

    • @MicroNG
      @MicroNG  4 ปีที่แล้ว

      convert a string form into integer like "123" into simply 123

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

      by default radix of parseInt method is 10. so it will convert "123" into integer 123
      but if ur dealing with binary number, binary string need to be converted into integer for example "1101" will get converted into 13 which is integer equivalent of 1101

    • @sherrycomm9713
      @sherrycomm9713 4 ปีที่แล้ว

      @@MicroNG Ok thanks

  • @saddamhusain-ls5qr
    @saddamhusain-ls5qr 5 ปีที่แล้ว +1

    Thanks it easy to understand

  • @shunmugarajan3703
    @shunmugarajan3703 3 ปีที่แล้ว

    What happen if we enter decimal number it will check "it is binary or not" OR is throw error

  • @tanvigupta5549
    @tanvigupta5549 3 ปีที่แล้ว

    Instead of parseint can we directly input in long data type?

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

      U need to use wrapper class

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

    Very well explained my guy, and your speech is worth listening to for hours😅😂

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

      happy to see ur comment

  • @nizam-u-ddinpatoli8934
    @nizam-u-ddinpatoli8934 3 ปีที่แล้ว

    BINARY ADDITION: Two decimal numbers are accepted as input and are
    automatically converted into binary numbers and are added.

    • @MicroNG
      @MicroNG  3 ปีที่แล้ว

      How can I help?

    • @nizam-u-ddinpatoli8934
      @nizam-u-ddinpatoli8934 3 ปีที่แล้ว

      @@MicroNG how will be make this type of calculator that I have written this question?

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

    Sir why you are used 2
    In the parseint

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

    how about this 102.96 to binary what it is code please help

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

    Awsome!! thanks..

  • @bhimeshbhim1059
    @bhimeshbhim1059 3 ปีที่แล้ว

    Why the Parameters passed (x,2) and (y,2).. explain plz

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

      First parameter like x and y are string binary number like "10011". Now to convert into any pattern we can use base. here we have to convert into binary number, so we are using 2.
      Change 2 into 10 and see what ur getting, then u will understand

    • @jimohibrahim6081
      @jimohibrahim6081 6 หลายเดือนก่อน

      You are great dude other videos sucks

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

    Thank you brother

    • @MicroNG
      @MicroNG  6 ปีที่แล้ว

      Welcome

    • @udaykumarreddy8036
      @udaykumarreddy8036 3 ปีที่แล้ว

      @@MicroNG bro fro me error it was showing

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

    Your method is very simplified man. Thanks!! Mine actually sucks
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {
    long binary1, binary2;
    int i = 0;
    int remainder = 0;
    int sum[] = new int[20];
    Scanner pot = new Scanner(System.in);
    System.out.println("Print first binary number");
    binary1 = pot.nextLong();
    System.out.println("Print second binary number");
    binary2 = pot.nextLong();
    while(binary1!=0 || binary2!=0){
    sum[i++]=(int)((binary1 % 10 + binary2 % 10 + remainder) % 2);
    remainder = (int)((binary1 % 10 + binary2 % 10 + remainder) / 2);
    binary1 = binary1 / 10;
    binary2 = binary2 / 10;
    }
    if (remainder != 0) {
    sum[i++] = remainder;
    }
    --i;
    System.out.print("Sum of two binary numbers: ");
    while (i >= 0) {
    System.out.print(sum[i--]);
    }
    System.out.print("
    ");
    }
    }

    • @MicroNG
      @MicroNG  4 ปีที่แล้ว

      Thank u Emmanuel for ur feedback

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

    Not that clear with the explanation, but the code is good.

    • @MicroNG
      @MicroNG  5 ปีที่แล้ว

      thank you for ur feedback.

  • @any_farooqui6601
    @any_farooqui6601 3 ปีที่แล้ว

    Ye kha pr run krna plz tell me plzzz...

    • @MicroNG
      @MicroNG  3 ปีที่แล้ว

      Any jave editor u can use.. here unused NetBeans.. u can use eclipse also

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

    Thanks

  • @yadamakantisandeepreddyap1986
    @yadamakantisandeepreddyap1986 3 ปีที่แล้ว

    Bro its not working

    • @MicroNG
      @MicroNG  3 ปีที่แล้ว

      what happened?

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

    smart

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

      Thank YOU

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

    Why Indian :(

    • @MicroNG
      @MicroNG  4 ปีที่แล้ว

      sorry i didn't get ?