Java Bangla Tutorials 95 : Binary, octal, hexadecimal to Decimal

preview_player
Показать описание
➡️ In this video, I will discuss converting Binary, octal, and hexadecimal to Decimal.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) Binary, octal, hexadecimal to Decimal
⌨️ (03:50) Outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

Thank you ❤️
76, 77 ekto ulta palta ache sir

GOLAMMAHADI
Автор

Vai amar kache apnar bujhanor system ta onek valo lage.
Apni onek deeply bujhanor try
Tai amar request holo <<<video editing >>> niya ekti playlist den

anamulhoque
Автор

Wondering why Integer If i write int result is the same. which one is more appropriate in this example as we are not working with objects in this video?

smathiq
Автор

I modified this program and run 3 program at once using switch case.

kripamoypatra
Автор

package javabeginner;


public class Conversion3 {
public static void main(String[] args) {
String bin = "111";
Integer dec = Integer.parseInt(bin, 2);
System.out.println("Decimal is = "+dec);

String oct = "17";
Integer deci = Integer.parseInt(oct, 8);
System.out.println("Decimal is = "+deci);

String hex = "13";
Integer decimal = Integer.parseInt(hex, 16);
System.out.println("Decimal is = "+decimal);

}
}

tomabanik
Автор

package Wrapper_Demo;

public class Binary_octal_hexadecimal {

public static void main(String[] args) {

String binary = "101011";
Integer decimal = Integer.parseInt(binary, 2);
System.out.println("Binary = " + decimal);



String octal = "56647";
Integer decimale = Integer.parseInt(octal, 8);
System.out.println("Octa Decimal = " + decimale);



String hexadecimal = "b";
Integer hexadecimale = Integer.parseInt(hexadecimal, 16);
= " + hexadecimale);

}

}

yusufsarker
Автор

user er kas theke input nite chale to 2 ta package ek shathe kaj kore
.package number_system_conversion;
import java.util.Scanner;
public class NumberConversionDemo {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);
String binary = input.nextLine();

Integer decimal = Integer.parseInt(binary, 2);










}

}

nishatvasker
join shbcf.ru