Skip to content

Instantly share code, notes, and snippets.

@weirdestnerd
Created August 29, 2016 22:35
Show Gist options
  • Save weirdestnerd/5d63a8f87f980d46d3d82d06e962dc8e to your computer and use it in GitHub Desktop.
Save weirdestnerd/5d63a8f87f980d46d3d82d06e962dc8e to your computer and use it in GitHub Desktop.
//Calculates runtime for the elevator
public int runtime(int dstfl, int curflr) {
return ( (dstfl - curflr) * 30 ) / totflr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment