fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float b;
  6. double db;
  7. scanf("%f",&b);
  8. printf("b=%.2f\n",b);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5312KB
stdin
3.1415
stdout
b=3.14