一个关于嵌套while虚幻的小题目~
这是我做的一个关于循环的题目#include <stdio.h>
void main()
{
int nstars=1,stars;
while(nstars<=10)
{
stars=1;
while(stars<=nstars)
{
printf("*");
stars++;
}
printf("\n");
nstars++;
}
}
其结果是
*
**
***
****
*****
******
*******
********
*********
**********
***********
可是我如果想打印出
*
**
***
****
*****
******
*******
********
*********
**********
或者是等边3角型的话 应该怎么打印呢~
我做的时候老是没思路~啊~求助一下~ 我应该怎么做呢~~