单项选择题

若有定义语句:
double x,y,*px,*py;
执行
px=&x;py=&y;
正确的输入语句是______。

A.scanf("%lf%lf",px,py);
B.scanf("%f%f"&x,&y);
C.scanf("%f%f",x,y);
D.scanf("%lf%lf",x,y);