Java Interfaces Code coach problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Java Interfaces Code coach problem

I am confused how to solve this problem. Any tips? https://code.sololearn.com/cZ5RgbhtJWhk/?ref=app

30th Oct 2020, 4:05 PM
Yaroslav Yatsyk
Yaroslav Yatsyk - avatar
2 Answers
+ 1
To resolve the error, line 24 and 25 should be modified and made abstract. public abstract void swim(); public abstract void play(); If this doesn't solve the problem then make sure to share the problem statement with the code so that the community could help, as many of them are not pro users.
30th Oct 2020, 4:48 PM
Avinesh
Avinesh - avatar
0
I subscribed the pro version to see these problems, then I realized that some pre-written statements seem to be swapped. Then regarding this problem, the original code should contain: dog.swim(); dog.play(); cat.swim(); cat.play(); But items were swapped, being dog.swim(); cat.swim(); dog.play(); cat.play(); Does it proceed guys? Furthermore, there was a curly ending bracket left for the Dog class and one for the Cat Class.
6th Dec 2020, 3:28 PM
Lucas Kliemczak
Lucas Kliemczak - avatar