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