Seldom________(l make) my mistakes during my past five years of service here.
查看答案
Hardlly___1___the bell__2__(ring)when the teacher came in.
已知 double a;使用scanf()函数输入一个数值给变量a,正确的函数调用是( )。
A. scanf("%ld",&a);
B. scanf("%d",&a);
C. scanf("%7.2f",&a);
D. scanf("%lf",&a);
已知char a;使用scanf()函数输入一个字符给变量a,不正确的函数是( )。
A. scanf("%d",&a);
B. scanf("%lf",&a);
C. scanf("%c",&a);
D. scanf("%u",&a);
已有如下定义和输入语句: int a,b; scanf("%d,%d",&a,&b); 若要求a,b的值分别为10和20。正确的数据输入是( )。
A. 10 20
B. 10,20
C. a=10,b=20
D. 10;20