// Créateur JCM
#include <stdio.h>
#include "asciiart.h"
int main(void)
{
	int i,j,r;
	srand(time(NULL));
	for (i=0;i<10;i++)
	{
		for (j=0;j<10-i;j++)
		{
			textcolor(2);
			printf(" ");
		}
		for (j=0;j<(2*i)-1;j++)
		{
			if (rand()%10==0)
			{
				textcolor(rand()%8);
				printf("O");
			}
			else
			{
				textcolor(2);
				printf("*");
			}
		}
		printf("\n");
	}
	textcolor(3);
	for (i=0;i<3;i++)
	{
			printf("        @@@\n");
	}
	textcolor(7);
	return(0);
}
