Generation

generate functionFri, 07 Apr 2023

Write an app that connects pet owners with other pet owners in their area for playdates and socialization. Users could create profiles for their pets, schedule meetups, and exchange tips on pet care.

public class PetApp { public static void main(String[] args) { Pet pet1 = new Pet(); pet1.setName("Teddy"); pet1.setBreed("Mutt"); pet1.setPet_type("Dog"); pet1.setNotes("likes to play fetch"); pet1.setOwner("John"); pet1.setPhone("727-555-1234"); System.out.println("Name: " + pet1.getName()); System.out.println("Breed: " + pet1.getBreed()); System.out.println("Type: " + pet1.getPet_type()); System.out.println("Notes: " + pet1.getNotes()); System.out.println("Owner: " + pet1.getOwner()); System.out.println("Phone #: " + pet1.getPhone()); System.out.println(); Pet pet2 = new Pet(); pet2.setName("Maggie"); pet2.setBre

Questions about programming?Chat with your personal AI assistant