Add: a5 close #9

This commit is contained in:
2022-04-24 13:24:47 +08:00
parent 4a4c378b87
commit e20c82d559
45 changed files with 2381 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/*
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007)
* Date: 2022-04-24
* Description: This is a moveable interface.
*/
public interface Movable {
public int accelerate(int amount) throws ExceedSpeedLimit, NotEnoughSpeed;
}