How do I to an integer by compression BCD code into an array of arrays and will be deposited in the compression BCD back into an integer
Num=1234567 deposit such as integer array after a (4)
There are two ways to
A (0)=& amp; H01-2
A (1)=& amp; H23
A (2)=& amp; H45
A (3)=& amp; H67
Or
A (0)=& amp; H67
A (1)=& amp; H45
A (2)=& amp; H23
A (3)=& amp; H01-2
Could you tell me how to implement the above functional requirement
CodePudding user response: