This commit is contained in:
2025-01-13 03:59:28 +03:00
parent a5b35aabb3
commit aea61f2076
14 changed files with 194 additions and 0 deletions

6
test/CatTest.java Normal file
View File

@ -0,0 +1,6 @@
public class CatTest {
public static void main(String[] args) {
Cat orangesmall = new Orange("Turuncu");
System.out.println(orangesmall.getColor()+" rengi ismi de: "+orangesmall.getName()+" ve kilosu: "+orangesmall.Weight());
}
}