标签: c input double scanf
#include <stdio.h> int main(void) { double a, b; scanf("%lf %lf\n", &a, &b); printf("%lf%lf\n", a, b); }
为什么不管我写的是什么总是返回0.0000?