若已经定义“struct stu {int num,score;} student;”,则下列输入语句中正确的是( )。
A: scanf(“%d”,&score);
B: scanf(“%d”,&student);
C: scanf(“%d”,&stu.score);
D: scanf(“%d”,&student.score);
A: scanf(“%d”,&score);
B: scanf(“%d”,&student);
C: scanf(“%d”,&stu.score);
D: scanf(“%d”,&student.score);
举一反三
- 若已经定义:struct stu { int a, b; } student ;则下列输入语句中正确的是( ) A: scanf("%d",&a); B: scanf("%d",&student); C: scanf("%d",&stu.a); D: scanf("%d",&student.a);
- 若已经定义struct stu { int a; int b; } student; ,则下列输入语句中正确的是 。? scanf("%d",&stu.a);|scanf("%d",&student);|scanf("%d",&student.a);|scanf("%d",&a);
- 若已经定义struct stu { int a, b; } student ; 则下列输入语句中正确的是 。 A: scanf("%d",&a); B: scanf("%d",&student); C: scanf("%d",&stu.a); D: scanf("%d",&student.a);
- 有如下定义:struct student{ int num; char name[20]; int age;};struct student stu[30];下面输入语句正确的是()。 A: scanf("%d",&stu.age); B: scanf("%d",stu[0].age); C: scanf("%d",&stu[0].age); D: scanf("%d",stu.age);
- 有如下定义:struct student{ int num; char name[20]; int age;};struct student stu[30];下面输入语句正确的是()。 A: scanf("%d",&stu.age); B: scanf("%d",stu[0].age); C: scanf("%d",&stu[0].age); D: scanf("%d",stu.age);