Rotate Three Values
EasyRead three integers x, y, and z. Print them on one line in the form before: x = 1, y = 2, z = 3. Then rotate the values so that x takes the value y had, y takes the value z had, and z takes the value x had, and print them again in the form after: x = 2, y = 3, z = 1. Use a single temporary variable for the rotation. If the three integers 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.