vault backup: 2024-01-21 00:27:23

This commit is contained in:
2024-01-21 00:27:23 +00:00
parent 358e43950b
commit 7a6e5c1b31
46 changed files with 1226 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
/**
* Write a description of class ZooApp here.
*
* @author (your name)
* @version (a version number or a date)
*/
import java.io.*;
public class ZooApp
{
/**
* Constructor for objects of class ZooApp
*/
public ZooApp( String file ) throws FileNotFoundException
{
System.out.println( file );
Zoo zoo = new Zoo();
zoo.showAllAnimals();
zoo.readAnimalData( "new_animals.txt" );
zoo.showAllAnimals();
}
}