Gos i gat
Submit solution
Points:
10
Time limit:
5.0s
Memory limit:
256M
Author:
Problem types
Allowed languages
C#, Go, Java, Python
A partir del codi següent, crea les classes Gos
i Gat
. Afegeix els mètodes necessaris.
// Declara aqui la classe (sense cap modificador)
public class Main {
public static void main(String[] args) {
Gos gos = new Gos();
Gat gat = new Gat();
gos.lladrar();
gat.miolar();
}
}
Input Format
-
Constraints
-
Output Format
-
Sample Output 0
Guau, guau
Miau, miau
Autoria: Gerard Falcó
CC BY-NC-SA 4.0