gleitkommafreundefixed by ismail

#include<stdio.h>\x0d
\x0d
void main(){\x0d
\x09int n,i,j;\x0d
\x09scanf("%i",&n);\x0d
\x09for ( i=0; i<n-1;i++){\x0d
\x09\x09for ( j=0;j<n-i-2;j++)\x0d
\x09\x09\x09printf(" ");\x0d
\x09\x09for( j=0;j<2*i+1;j++)\x0d
\x09\x09\x09printf("*");\x0d
\x09\x09printf("\n");\x0d
\x09}\x0d
\x09for (j=0;j<n-3;j++)\x0d
\x09\x09\x09printf(" ");\x0d
\x09if (n>1)\x0d
\x09\x09printf("G*F");\x0d
}\x0d
\x0d
\x0d

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

To protect the system from spam, please input your favorite sport (hint: I believe its name must start with 'g', case insensitive)

download

return to the top page