fork download
  1. #include <stdio.h>
  2. #include <float.h>
  3.  
  4. float cutSmallValue(float srcval) {
  5.  
  6. }
  7.  
  8. int main(void) {
  9. float den = 0.5; // denominator
  10. float nom = 0.100000001490116; // nominator
  11. float ratio;
  12.  
  13. ratio = den / nom - 1;
  14.  
  15. printf("%f", ratio);
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
4.000000