Write a program to convert the input numbers to another number
system.
1. Decimal to Binary
2. Binary to Decimal
3. Hexadecimal to Decimal
4. Decimal to Hexadecimal
5. Binary to Hexadecimal
6. Hexadecimal to Binary
The user will type in the input number as following:
Binary number : up to 8 bits
Hexadecimal number: up to 2 bytes
Decimal number: Less than 256
As a result, print out the output after the conversion with
their input numbers.
The program...
Problem: Convert the following binary number to decimal.
1. 110101.101
Problem: Convert the following decimal number to fractional binary
representation.
1. 103.5625
HCS12 Assembly Language:
1. Write a program to convert a decimal number
stored at memory location $1010 into a binary number. Store the
result in memory location $2000
JAVA JAVA JAVA . I need to convert a string input to int array,
for example if user enters 12 / 27 / 2020 , I want to store each
value in a separate array and add them afterwards.
Using Selection Sort on an any array of size 7, what will be the
minimum/maximum number of comparisons and number of exchanges?
1 for i = 1 to A.length-1
2 for j = i+1 to A.length
3 if A[j] < A[i]
4 exchange A[i] with A[j]