CJCoding With Joseph

Elevator Class

Create a class Elevator with a public int field Floor (starts at 0). Add Up() which moves up one floor but never above 10, and Down() which moves down one floor but never below 0. Do not write a Main method.

After calling Up() three times the program prints:
3

Expected Output:

3
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.