Skip to content

Instantly share code, notes, and snippets.

@nherbaut
Created September 28, 2023 11:58
Show Gist options
  • Select an option

  • Save nherbaut/0b724db417733768b62c5df3396413e0 to your computer and use it in GitHub Desktop.

Select an option

Save nherbaut/0b724db417733768b62c5df3396413e0 to your computer and use it in GitHub Desktop.
L2.2.4 Exo classes type et for

Quelles sont les méthodes appartenant à la classe Frog?

public void play () {
Frog fred = new Frog();
Cat jiang = new Cat();
fred.hop(4);
jiang.jump(5, fred);
String greet = "That is all";
fred.say(greet, 3);
}
@nherbaut
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment