语句scanf("%7.2f",&a);是一个合法的scanf函数调用语句。()
举一反三
- 语句scanf("%6.2f",&a);是一个合法的scanf函数调用语句。()
- 语句scanf('%7.2f',&a);是一个合法的scanf函数.
- 若x定义为int,y定义为double型,以下合法的scanf函数调用语句是( )。 A: scanf("%d%f",&x,&y); B: scanf("%d%f", x,y); C: scanf("%d%lf",&x,&y); D: scanf("%d%lf",x,y);
- 若有定义:int a; float x; 则下面正确的输入函数调用语句是( )。 A: scanf("%f%d",&a,&x); B: scanf("%f%d",a,x); C: scanf("%d%f",&a,&x); D: scanf("%d%f",a,x);
- 若int a,b; double x;以下不合法的scanf函数调用语句是 。 A: scanf(“%d%o%f”, &a,&b,&x); B: scanf(“%3d%*3d%lf”,&a,&b,&x); C: scanf(“%o%f%lo”,&a,&b); D: scanf(“%ld%lo%o”,&a,&b,&x);