Eggs Sunny Side Up
본문 바로가기
Algorithm/Java Festival

[Java Festival] 문자열 형태의 2진수를 10진수로 변환

by guswn100059 2023. 3. 11.

public class You_28번 {

	public static void main(String[] args) {
		
		//문자열 형태의 2진수를 입력받아
		//10진수로 바꾸는 프로그램을 작성하시오.
		
		String str = "01001101";
		
		int result = Integer.parseInt(str, 2);
		
		
		System.out.print(str+"(2) = "+result+"(10)");

	}

}

2진수 --> 10진수

Integer.parseInt(변수, 2)

댓글