fork download
  1. #include <stdio.h>
  2.  
  3. #define P(x) puts(x);
  4. #define Z "| |"
  5. T(){float i=7,j=12.6;P(".-----------.")P(Z)P(Z)P("'-. .-'")P(".-' - '-.")while(i>=0)printf("|%5.1f- %.1f|\n",95+j,35+i),i-=.5,j-=.9;P("'---. - .---'")P(" | - |")P(" |---|")P(" | |")P(" '---'")}
  6.  
  7.  
  8. int main(void) {
  9. T();
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
.-----------.
|           |
|           |
'-.       .-'
.-'   -   '-.
|107.6- 42.0|
|106.7- 41.5|
|105.8- 41.0|
|104.9- 40.5|
|104.0- 40.0|
|103.1- 39.5|
|102.2- 39.0|
|101.3- 38.5|
|100.4- 38.0|
| 99.5- 37.5|
| 98.6- 37.0|
| 97.7- 36.5|
| 96.8- 36.0|
| 95.9- 35.5|
| 95.0- 35.0|
'---. - .---'
    | - |
    |---|
    |   |
    '---'