关于for循环的。
上次看到有个************
***
*
的程序就想到了这个。
/* Note:Your choice is C IDE */
#include "stdio.h"
main()
{
int a, b, c, i;
int n;
int x=0;
i=2*x;
do{
printf("please input an number!:\n");
scanf("%d",&n);
}while(!(0<=n&&n<=100));
for(a=0;a<=n;a+=2)
{
for(b=0;b<i;b++)
{printf(" ");}
for(c=0;c<n-i;c++)
{printf("*");}
printf("\n");
x++;
}
getch();
}
我找不到是那个地方出错,请大家发言。