美文网首页
练习2-6-3:打印平行四边形(循环结构)

练习2-6-3:打印平行四边形(循环结构)

作者: 笑笑xx | 来源:发表于2022-06-13 19:09 被阅读0次

    #include <stdio.h>

    int main()

    {

        int m,n,i,j,k;

        scanf("%d%d",&m,&n);

        for(i=1;i<=m;i++)

        {

            for(j=1;j<=m-i;j++)

            {

                printf(" ");

            }

            for(k=1;k<=n;k++)

            {

                printf("*");

            }

            printf("\n");

        }

        return 0;

    }

    相关文章

      网友评论

          本文标题:练习2-6-3:打印平行四边形(循环结构)

          本文链接:https://www.haomeiwen.com/subject/zwwomrtx.html