在C中加倍的Scanf返回0.00000

时间:2016-10-19 09:05:06

标签: 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?

0 个答案:

没有答案