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