Viết chương trình python chuyển số thập phân sang nhị phân, dùng lệnh while hoặc for
Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.
def dec_to_bin(decimal): if decimal < 0: return "Không hỗ trợ số âm" elif decimal == 0: return "0" else: binary = "" while decimal > 0: remainder = decimal % 2 binary = str(remainder) + binary decimal = decimal // 2 return binary
decimal_number = int(input("Nhập số thập phân: ")) binary_representation = dec_to_bin(decimal_number) print(f"{decimal_number} ở dạng nhị phân là: {binary_representation}")
Để sử dụng tính năng này, Bạn cần đăng nhập bằng tài khoản Howkteam.
Để xem được nội dung và giúp Kteam duy trì hoạt động. Bạn vui lòng tắt Adblock trên website howkteam.vn nhé!
def dec_to_bin(decimal):
if decimal < 0:
return "Không hỗ trợ số âm"
elif decimal == 0:
return "0"
else:
binary = ""
while decimal > 0:
remainder = decimal % 2
binary = str(remainder) + binary
decimal = decimal // 2
return binary
decimal_number = int(input("Nhập số thập phân: "))
binary_representation = dec_to_bin(decimal_number)
print(f"{decimal_number} ở dạng nhị phân là: {binary_representation}")