fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. double number = 0;
  5.  
  6. while(scanf("%lf ", &number) == 1) {
  7. printf("%f\n", number);
  8. }
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0.02s 1724KB
stdin
6.45 3.88 5.91
stdout
6.450000
3.880000
5.910000