Separated integer variable data from remainder
Hello,
I have an integer variable in which I am trying to separate the integer from the remainder.
I am working on a converter a mm to inch converter that gives the remainder off as a fraction.
Example:
integer=3.54
I want to separate it into two variables
intergerA = 3
integerB = .54
Any suggestions would be greatly appreciated.

