Guest User

Untitled

a guest
Jun 13th, 2019
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class Engine {
  2. private int engineSpeed;
  3. private int enginePower;
  4.  
  5. public Engine(int engineSpeed, int enginePower){
  6. this.engineSpeed = engineSpeed;
  7. this.enginePower = enginePower;
  8.  
  9. }
  10.  
  11. public int getEnginePower() {
  12. return enginePower;
  13. }
  14.  
  15. }
Add Comment
Please, Sign In to add comment