若有定义:
double a, b, c;
能正确给a,b,c输入数据的语句是( )
scanf(" %lf %lf %lf", &a, &b, &c);
scanf(" %f %f %f",&a, &b, &c);
scanf(" %lf %lf %lf", a, b, c);
scanf(" %lf %lf %lf"; *a, *b, *c);