打印马里奥两个半金字塔CS50

时间:2017-05-09 03:24:44

标签: c cs50

嘿我正在研究CS50更舒服的问题,我无法弄清楚如何在同一条线上打印第二个马里奥金字塔。在我的代码中,它已打印出来,但它不在同一行。

如果您引导我或告诉我如何操作并不重要。我使用CS50作为练习,我没有任何改变。所以这不会是作弊。

#include <stdio.h>
#include <ctype.h>

int main(void)
{
    int height = 0;

    // left pyramid variables
    int i = 0;
    int j = 0;
    int k = 0;

    // variable for gap
    int g = 0;

    // right pyramid variables
    int l = 0;
    int m = 0;
    int n = 0;


    //do - while loop -- works

    do
    {
        printf("Height: ");
        scanf("%d", &height);
    }

    while (height < 0 || height > 23);

    // Print pyramids

        // print spaces for left pyramid (less spaces needed with time) ✓
        // print hashes for left pyramid ✓
        // print gap (2)
        // print hashes for right pyramid
        // print new line - for next row

    // Left Pyramid

    // Rows -- determines the height
    for (i = 0; i < height; i++)
    {
        // Cols -- in this one we are doing the spaces

        // the -i makes it left aligned -- to make it right aligned remove the "-1"
        for (j = 0; j < height-i; j++)
        {
            // Printing Spaces
            printf(" ");
        }
        // "i+1" - we want i to be 1 whenever height is 0, and we want i to increase by one
        // whenever the height increases, so that's why we add + 1 to it
        // if I don't add 1 to it what it does is that prints a new line, and then it prints
        // 4 things instead of 5 for example.
        for (k = 0; k < i + 1; k++)
        {
            printf("#");
        }

        // Print new line
        printf("\n");
    }

    // Gap -- fix gap, the rest works how it should -- I think I need to make everything
    // inside one loop

    // for (g = 0; g < height; g++)
    // {
    //     printf("  ");
    // }

    // Right Pyramid

      // Rows -- determines the height
    for (l = 0; l < height; l++)
    {

        // Cols -- in this one we are doing the spaces

        // right aligned
        for (m = 0; m < height; m++)
        {
            // Printing Spaces
            printf(" ");
        }
        // "i+1" - we want i to be 1 whenever height is 0, and we want i to increase by one
        // whenever the height increases, so that's why we add + 1 to it
        // if I don't add 1 to it what it does is that prints a new line, and then it prints
        // 4 things instead of 5 for example.
        for (n = 0; n < l + 1; n++)
        {
            printf("#");
        }

        // Print new line
        printf("\n");
     }


    return 0;
}

1 个答案:

答案 0 :(得分:0)

为什么不在第一个循环中做一些事情:

for (k = 0; k < i + 1; k++)
{
    printf("#");
}

/* this is new */
/* Draw the gap */
for (k = 0; k < gap; k++) {
    printf(" ");
}
/* Draw the left part*/
for (k = 0; k < i + 1; k++)
{
    printf("#");
}