一个FOR中的问题
如何打印A
ABA
ABCBA
ABCDCBA
ABCDEDCBA
#include "stdio.h"
#include "conio.h"
#define N 5
main()
{
int i,j,k,m,n;
char c;
for(j=0;j<N;j++)
{
for(i=0;i<2*(N-1-j);i++)
{
printf(" ");
}
for(n=0,m=0,c='A',i=2*(N-1-j);i<2*(N-1)+1;i++,n++)
{
printf("%c",c+m);
if(n<j) m++;
else m--;
}
printf("\n");
}
getch();
}
/*TC下编译运行通过*/