fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. float a = 1.25 ;
  6. float b = 1.35 ;
  7. float c = 1.75 ;
  8. printf ("%.1f %.1f %.1f\n", a, b, c) ;
  9. }
Success #stdin #stdout 0s 2852KB
stdin
Standard input is empty
stdout
1.2 1.4 1.8