#include<stdio.h>
int main()
{
int i,j,n=5;
for (i=1;i<=n;i++)
{
for(j=n;j>i;j--)
{
printf("_");
}
for(j=1;j<=i;j++)
{
printf("%d",j);
}
for(j=1;j<i;j++)
{
printf("%c",64+j);
}
printf("\n");
}
return(0);
}
/*
____1
___12A
__123AB
_1234ABC
12345ABCD
*/
int main()
{
int i,j,n=5;
for (i=1;i<=n;i++)
{
for(j=n;j>i;j--)
{
printf("_");
}
for(j=1;j<=i;j++)
{
printf("%d",j);
}
for(j=1;j<i;j++)
{
printf("%c",64+j);
}
printf("\n");
}
return(0);
}
/*
____1
___12A
__123AB
_1234ABC
12345ABCD
*/
No comments:
Post a Comment