I'm trying to print this big X pattern:
x x
x x
x x
x x
x
x x
x x
x x
x x
I can't figure out the algorithm to make it. I'm just starting C programming and getting stuck.
What I have so far is
#include <stdio.h>
int main()
{
int j,i;
char ch[] = "$";
for(int j = 5; j >= 0 ; --j)
{
for(i = 5; i>=0; --i)
{
if(j%2 == 1)
{
printf("%s",ch);
}
}
printf("\n");
}
return 0;
}
I figured out the pattern too,
0 5 0
1 3 1
2 1 2
3 0 3
2 1 2
1 3 1
0 5 0
The numbers on the edge are where a * should appear. The numbers in the middle are where spaces should appear. What am I missing?