算法训练 图形显示  

时间限制:1.0s   内存限制:512.0MB

 

问题描述

  编写一个程序,首先输入一个整数,例如5,然后在屏幕上显示如下的图形(5表示行数):
  * * * * *
  * * * *
  * * *
  * *
  *

 

#include <stdio.h>

int main()
{
    int n;

    scanf("%d", &n);
    if (n >= 1)
    {
        while (n)
        {
            for (int j = 0; j < n; ++j)
                printf("* ");
            printf("\n");
            n--;
        }
    }

    return 0;
}