Integral and Decimal Parts
EasyRead one real number and print its integral part and its decimal part on two lines, in the form integral part = 123 and decimal part = 0.45. The integral part is the number truncated toward zero, printed as a whole number; the decimal part is what remains when the integral part is subtracted, printed to two decimal places. Both parts keep the sign of the input, so -12.75 gives -12 and -0.75. If the number cannot be read, print invalid input and return 1.
Success Criteria
Your code must pass 5 test case(s) to complete this exercise. 3 hint(s) are available if you need help.
How did you find this exercise?
Your rating helps us improve the content.
Sign in to track your progress
You can work on exercises as a guest, but sign in to track your progress and save your submissions.