Last active
September 7, 2020 03:44
-
-
Save tlylt/bbe27b619c0bd8f9a21bd327f185ca1c to your computer and use it in GitHub Desktop.
Lab 2 Level 6 test file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/open Cruise.java | |
/open SmallCruise.java | |
/open BigCruise.java | |
/open Loader.java | |
/open RecycledLoader.java | |
/open level6.jsh | |
Cruise[] cruises = { | |
new BigCruise("B1111", 0, 60, 1500), | |
new SmallCruise("S1112", 0), | |
new BigCruise("B1113",30, 100,1500), | |
new BigCruise("B1114",100,100,1500), | |
new BigCruise("B1115",130,100,1500), | |
new BigCruise("B1116",200,100,1500) | |
} | |
serveCruises(cruises); | |
/exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment