Practice Exercises C# Sharp - Learn to program with performing exercises C# Sharp

Practice Exercises C# Sharp

Learn to program with performing exercises C# Sharp


ScreenText - Practice Exercises C# Sharp


Lesson 7:

More on classes


Exercise 7.10:

ScreenText


Objetive:

Create a class ScreenText, to display a certain text in specified screen coordinates. It must have a constructor which will receive X, Y and the string to write. It must also have 3 setters and a "Display" method.

Create a class CenteredText, based on ScreenText, to display text centered (horizontally) in a certain row of the screen. Its constructor will receive only Y and the text. SetX should not change the horizontal position.

Create a class FramedText, to display text centered and inside a rectangle. It will receive the starting row and the text.

Finally, create a test program for all of them, which will create an object of each type and display them.


Source Code:


using System;
namespace TextScreen
{
    class CenteredText : ScreenText
    {

    }
}

using System;
namespace TextScreen
{
    class Program
    {
        static void Main(string[] args)
        {
        }
    }
}

using System;
namespace TextScreen
{
    class ScreenText
    {
        protected int x, y;
        protected string text;

        public ScreenText(int x, int y, string text)
        {
            this.x = x;
            this.y = y;
            this.text = text;
        }

        public void SetX(int x)
        {
            this.x = x;
        }
        public void SetY(int y)
        {
            this.y = y;
        }
        public void SetText(string text)
        {
            this.text = text;
        }

        public void Display()
        {
            Console.SetCursorPosition(x, y);
            Console.Write(text);
        }
    }
}
Exercisey 7.10




Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.