Exemplo n.º 1
0
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line

            Barometer theBarometer = new Barometer();

            theBarometer.Pressure = 975;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 985;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 995;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 1005;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 1015;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 1025;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 1035;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            theBarometer.Pressure = 1045;
            Console.WriteLine($"Pressure is {theBarometer.Pressure} hPa : {theBarometer.WeatherDescription}");

            // The LAST line of code should be ABOVE this line
        }
        public void MyCode()
        {
            // The FIRST line of code should be BELOW this line

            Barometer barometer = new Barometer();

            Console.WriteLine(barometer.WeatherDescription);

            // The LAST line of code should be ABOVE this line
        }