fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. float w;
  8. float h;
  9. float a;
  10.  
  11. w=1.0;
  12. h=1.0;
  13. a=w*h/2.0;
  14.  
  15. printf("%f\n",a);
  16. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
0.500000