#include "stdio.h"
int main(void)
{
test3();
getch();
return 0;
}
test1(){
int i,j;
for(i=0;i<5;i++){
for(j=0;j<=i;j++){
printf("$");
}
printf("/n");
}
}
test2(){
int i,j;
char c;
for(i=0;i<6;i++){
for(j=0,c='F';j<=i;j++){
printf("%c",c-j);
}
printf("/n");
}
}
test3(){
char a = 'A';
char b;
int i;
int n,m,k;
for(k=0;k<25;k++){
i=k;
for(m=0;m<=i;m++){
for(n=0;n<26-m;n++)
printf(" ");
for(n=0;n=0;n--)
printf("%c",a+n);
printf("/n");
}
if(k==24)k=0;
}
}