请编写一个程序,利用循环语句实现打印下列图案.
问题描述:
请编写一个程序,利用循环语句实现打印下列图案.
* * * * *
* * * *
* * *
* *
*
答
#include
int main()
{
int i,j;
for(i=5;i>=1;i--)
{
for(j=1;j