• 2022-06-29 问题

    下列变量名中,合法的是( ) A: STU_NAME B: _NAME C: -NAME D: NAME+AGE

    下列变量名中,合法的是( ) A: STU_NAME B: _NAME C: -NAME D: NAME+AGE

  • 2022-06-01 问题

    如果函数定义为def stu(name): ,则下面对该函数的调用不合法的是( )。 A: stu(“Lucy”) B: stu() C: stu(‘Lucy’) D: stu(name=’Lucy’)

    如果函数定义为def stu(name): ,则下面对该函数的调用不合法的是( )。 A: stu(“Lucy”) B: stu() C: stu(‘Lucy’) D: stu(name=’Lucy’)

  • 2022-06-11 问题

    考察以下程序片段var name = document.getElementById(“stu”);以下选项正确的是( ) A: stu是控件的id B: stu是一个div C: stu是一个文本框 D: stu是控件的name

    考察以下程序片段var name = document.getElementById(“stu”);以下选项正确的是( ) A: stu是控件的id B: stu是一个div C: stu是一个文本框 D: stu是控件的name

  • 2022-06-11 问题

    访问如下json对象中的name属性的方式是:var stu={name:"张三",age:20} A: stu[name] B: stu.name C: stu->name D: this.name

    访问如下json对象中的name属性的方式是:var stu={name:"张三",age:20} A: stu[name] B: stu.name C: stu->name D: this.name

  • 2022-11-01 问题

    以下哪一个是Python合法的标识符?( ) A: stu_name B: stu-name C: 2name D: *name

    以下哪一个是Python合法的标识符?( ) A: stu_name B: stu-name C: 2name D: *name

  • 2022-06-06 问题

    在如下结构体中,不正确的是( )。 A: struct student {char name[10]; float score; }; B: struct stu[5] {char name[10]; float score; }; C: struct student {char name[10]; float score; } stu[5]; D: struct {char name[10]; float score; }stu[5];

    在如下结构体中,不正确的是( )。 A: struct student {char name[10]; float score; }; B: struct stu[5] {char name[10]; float score; }; C: struct student {char name[10]; float score; } stu[5]; D: struct {char name[10]; float score; }stu[5];

  • 2021-04-14 问题

    以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;

    以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;

  • 2022-06-08 问题

    对结构体类型变量定义不正确的是( )。 A: B: define STUDENT struct studentSTUDENT{char name;int num;}std; C: struct student{char name;int num;}stu; D: E: define struct student{char name;int num;}STD;STD stu; F: struct{char name;int num;}student;struct student stu;

    对结构体类型变量定义不正确的是( )。 A: B: define STUDENT struct studentSTUDENT{char name;int num;}std; C: struct student{char name;int num;}stu; D: E: define struct student{char name;int num;}STD;STD stu; F: struct{char name;int num;}student;struct student stu;

  • 2022-06-09 问题

    创建数据库表,下列语句中正确的是()。 A: create table stu(no integer, name text, sex text, age integer) B: table stu(no integer, name text, sex text, age integer) C: create stu(no integer, name text, sex text, age integer) D: 以上都不对

    创建数据库表,下列语句中正确的是()。 A: create table stu(no integer, name text, sex text, age integer) B: table stu(no integer, name text, sex text, age integer) C: create stu(no integer, name text, sex text, age integer) D: 以上都不对

  • 2021-04-14 问题

    分析下面的程序,下列说法中错误的是 ________ 。 #define NULL 0 #include "conio.h" struct stu { long num; char name[20]; int score; struct stu * next; }; int main() { struct stu *head,*p,*pa,*pb,*pc; pa=(struct stu *)malloc(sizeof(struct stu)); pb=(struct stu *)malloc(sizeof(struct stu)); pc=(struct stu *)malloc(sizeof(struct stu)); scanf("%ld%s%d",&pa->num,pa->name,&pa->score); scanf("%ld%s%d",&pb->num,pb->name,&pb->score); scanf("%ld%s%d",&pc->num,pc->name,&pc->score); head=pa; pa->next=pb; pb->next=pc; pc->next=NULL; p=head; while(p!=NULL) { printf("%ld,%s,%d\n",p->num,p->name,p->score); p=p->next; } }

    分析下面的程序,下列说法中错误的是 ________ 。 #define NULL 0 #include "conio.h" struct stu { long num; char name[20]; int score; struct stu * next; }; int main() { struct stu *head,*p,*pa,*pb,*pc; pa=(struct stu *)malloc(sizeof(struct stu)); pb=(struct stu *)malloc(sizeof(struct stu)); pc=(struct stu *)malloc(sizeof(struct stu)); scanf("%ld%s%d",&pa->num,pa->name,&pa->score); scanf("%ld%s%d",&pb->num,pb->name,&pb->score); scanf("%ld%s%d",&pc->num,pc->name,&pc->score); head=pa; pa->next=pb; pb->next=pc; pc->next=NULL; p=head; while(p!=NULL) { printf("%ld,%s,%d\n",p->num,p->name,p->score); p=p->next; } }

  • 1 2 3 4 5 6 7 8 9 10