Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

/ / Creates a Breakfast class / / and instantiates an object / / Displays Breakfast special information using static System.Console; class FixedDebugNine 2 {

// Creates a Breakfast class
// and instantiates an object
// Displays Breakfast special information
using static System.Console;
class FixedDebugNine2
{
static void Main()
{
Breakfast special = new Breakfast("French toast, 4.99);
//Display the info about breakfast
WriteLine(INFO);
// then display today's special
WriteLine("Today we are having {1} for {1}",
special.name, special.Price.ToString("C2"));
}
}
class Breakfast
{
public string INFO =
"Breakfast is the most important meal of the day.";
private string name;
private double Price;
// Breakfast constructor requires a
// name, e.g "French toast", and a price
public Breakfast(string name, double price)
{
name = name;
price = price;
}
public string Name {get; set}
public double Price {get; set}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft SQL Server 2012 Unleashed

Authors: Ray Rankins, Paul Bertucci

1st Edition

0133408507, 9780133408508

More Books

Students also viewed these Databases questions