fork download
  1. #include <stdio.h>
  2. #define C(a) ((a)*(a)*(a))
  3. int main(){
  4. int x,y;
  5.  
  6. for(y=9;y>-6;y--)
  7. {
  8. for(x=-8;x<9;x++)
  9. {
  10. putchar(C (x*x+y*y-25)<25*x*x*y*y*y ? "*##*"[(x+10)%4] : '-');
  11. }
  12.  
  13. putchar('\n');
  14. }
  15.  
  16. return 0;
  17. }
  18.  
  19.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
-----------------
--*##*-----##**--
-**##**---*##**#-
-**##**#-**##**#-
-**##**#-**##**#-
-**##**##**##**#-
--*##**##**##**--
--*##**##**##**--
---##**##**##*---
----#**##**##----
----#**##**##----
------*##**------
-------##*-------
--------#--------
-----------------