若有定义: double a,b,c;能正确给a,b,c输入数据的语句是( )。
A: scanf("%lf %lf %lf" &a,&b,&c);
B: scanf("%f%f%f",&a,&b,&c);
C: scanf("%lf %lf %lf",a,b,c);
D: scanf("%lf %lf %lf",&a,&b,&c);
A: scanf("%lf %lf %lf" &a,&b,&c);
B: scanf("%f%f%f",&a,&b,&c);
C: scanf("%lf %lf %lf",a,b,c);
D: scanf("%lf %lf %lf",&a,&b,&c);
举一反三
- 若有定义:double a, b, c;能正确给a,b,c输入数据的语句是( ) A: scanf(" %lf %lf %lf",&a, &b, &c ); B: scanf(" %f %f %f",&a, &b, &c ); C: scanf(" %lf %lf %lf",a, b, c ); D: scanf(" %lf %lf %lf" &a, &b, &c );
- 若有定义语句:double x;float y;不正确的输入语句是() A: scanf(“%lf%f”,x,y); B: scanf(“%f%f”,&x,&y); C: scanf(“%lf%f”,&x,&y); D: scanf(“%f%lf”,&x,&y);
- 若double型变量已正确定义,要给a,b,c输入数据,从键盘输入:1.0,2.5,3.9,正确的输入语句是( )。 A: scanf(“%lf,%lf,%lf”,&a,&b,&c); B: scanf(“%f,%f,%f”,a,b,c); C: scanf(“%f,%f,%f”,&a,&b,&c); D: scanf(“%f%f%f”,&a,&b,&c);
- 有变量定义int a; double c;下面输入语句能正确赋值的是( ) A: scanf("%d, %d", &a, &c); B: scanf("x=%d, c=%lf", &a, &c); C: scanf("%d %d", &a, &c); D: scanf("%d %lf",a, c);
- 设有定义: double a,b,c;若要求通过输入分别给a、b、c输入1、2、3,输入形式如下(注:此处□代表一个空格) □□1.0□□2.0□□3.0<;回车>;则能进行正确输入的语句是 A: scanf("%lf%lf%lf",a,b,c); B: scanf("%lf%lf%lf",&a,&b,&c); C: scanf("%f%f%f",&a,&b,&c); D: scanf("%5.1lf%5.1lf%5.1lf",&a,&b,&c);