Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need to do a function that received 3 entiers: horizontal and vertical position of the beginning of the line, as well as its length, and draws the diagonal line descending to the left. I don't understand how i can do the diagonal line. I have done a loop for do a horizontal line but I don't know what i need to change for draw a diagonal line.

For the horizontal line, I have done:

    static void LigneHorizontale(int posh, int pov, int longueur)
    {

            for (int i = 0; i < longueur; i++)
            {
                Console.SetCursorPosition(posh+i, pov);
                Console.WriteLine("-");
            }
    }
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
490 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to increase the X:

    public static void LineHorizontale(int x, int y, int length)
    {
        for (var i = 0; i < length; i++)
        {
            Console.SetCursorPosition(x + i, y);
            Console.Write("-");
        }
    }

Diagonal:

public static void LineDiaglonal(int x, int y, int length)
{
    for (var i = 0; i < length; i++)
    {
        Console.SetCursorPosition(x + i, y + i);
        Console.Write('\');
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...