style:fmt

This commit is contained in:
dichgrem
2025-11-15 13:30:17 +08:00
parent c20e8949a5
commit 41e6b71bd7
33 changed files with 549 additions and 543 deletions

View File

@@ -1,12 +1,12 @@
package com.study.demo2;
public class Main {
public static void main(String[] args) {
Animal dog = new Dog("Buddy");
Animal bird = new Bird("Tweety");
dog.makeSound();
dog.move();
bird.makeSound();
bird.move();
}
}
public static void main(String[] args) {
Animal dog = new Dog("Buddy");
Animal bird = new Bird("Tweety");
dog.makeSound();
dog.move();
bird.makeSound();
bird.move();
}
}