십진수 -> 이진수 변환하는 문제인데
print("십진수를 이진수로 변환하는 프로그램입니다.")
decimal = int(input("십진수를 넣어주세요"))
d=decimal
result = ''
while ():
remainder =
decimal =
result =
print("십진수",d,"은(는) 이진수",result,"입니다.")
이런 형식입니다 혹시 아시는분 계신가요
십진수 -> 이진수 변환하는 문제인데
print("십진수를 이진수로 변환하는 프로그램입니다.")
decimal = int(input("십진수를 넣어주세요"))
d=decimal
result = ''
while ():
remainder =
decimal =
result =
print("십진수",d,"은(는) 이진수",result,"입니다.")
이런 형식입니다 혹시 아시는분 계신가요
댓글 0