using System;
namespace LabPuppy3
{
///
/// Summary description for Class1.
///
class CatBuilder
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main(string[] args)
{
Console.Write("What is the name of your cat? ");
string catName = Console.ReadLine();
Console.Write("What is the breed of your cat? ");
string catBreed = Console.ReadLine();
Console.Write("How old is your cat in years? ");
int catAge = Convert.ToInt16(Console.ReadLine());
Cat c = new Cat(catName, catBreed, catAge);
}
}
}