fork download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. double x;
  5. printf("浮動小数点数>");
  6. scanf("%lf", x);
  7.  
  8. x=x+10;
  9.  
  10. printf("%f",x);
  11.  
  12.  
  13. return 0;
  14. }
Runtime error #stdin #stdout 0s 2164KB
stdin
3.3
stdout
Standard output is empty