. Convert 45(10) to binary, octal and hexa-decimal number systems
Answers
Answered by
1
Explanation:
In python
n =45
print(bin(n), "in binary.")
print (oct(n), in octal.")
print (hex(n), "in hexadecimal.")
Similar questions