Untitled

whhwjsuw
 avatar
unknown
plain_text
2 years ago
275 B
3
Indexable
#include <stdio.h>

int main()
{

		for(int i=1; i<10; i++) 
       {
		for(int j=10; j>i;j--)
			{printf("*");}
			printf("\n");
       }
       
       
		for(int i=1; i <10; i++)
	   {
        for(int j=0; j<i;j++)
			{ printf("*");}
			printf("\n");
       }

return 0;
}
Editor is loading...
Leave a Comment