displays info about each value.
v1: int part, dec part, sign
v2: int part, dec part, sign ... etc
The program should use the following functions:
getIntPart(): that takes in one input and returns its integer part
getDecPart(): that takes in one input and returns its decimal part
getSign(): that takes in one input and returns its sign as a string which could be positive, negative, or neutral
The following is a sample output
Enter a set of values: -4.3 1.25 0 5.5 -9999
-4.3: 4, 0.3, Negative
1.25: 1, 0.25, Positive
0: 0, 0, Neutral
5.5: 5, 0.5, Positive