fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. float f1,f2;
  6. f1=32.0/10;
  7. f2=32/10.0;
  8. printf("%f\n",f1);
  9. printf("%f",f2);
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
3.200000
3.200000