• 2022-06-08 问题

    有以下说明语句,对结构体变量s的成员num的不正确引用是 。[img=135x83]18039a948484934.png[/img] A: s.num B: *p.num C: p->num D: (*p).num

    有以下说明语句,对结构体变量s的成员num的不正确引用是 。[img=135x83]18039a948484934.png[/img] A: s.num B: *p.num C: p->num D: (*p).num

  • 2021-04-14 问题

    以下程序运行后的输出结果是 ________ struct NODE { int num; struct NODE *next; } main() { struct NODE s[3], *p, *q, *r; int sum=0; s[0].num=1; s[1].num=2; s[2].num=3; s[0].next=s+1; s[1].next=s+2; s[2].next=s; p=s; q=p->next; r=q->next; sum+=q->next->num; sum+=r->next->next->num; printf("%d", sum); }

    以下程序运行后的输出结果是 ________ struct NODE { int num; struct NODE *next; } main() { struct NODE s[3], *p, *q, *r; int sum=0; s[0].num=1; s[1].num=2; s[2].num=3; s[0].next=s+1; s[1].next=s+2; s[2].next=s; p=s; q=p->next; r=q->next; sum+=q->next->num; sum+=r->next->next->num; printf("%d", sum); }

  • 2021-04-14 问题

    以下程序段的输出结果是 。 int main(void) { int num = 0,s = 0; while(num <= 2){ num++; s += num; } printf("%d\n",s); return 0; }

    以下程序段的输出结果是 。 int main(void) { int num = 0,s = 0; while(num <= 2){ num++; s += num; } printf("%d\n",s); return 0; }

  • 2022-07-23 问题

    以下变量定义,错误的是: A: struct student{int num, char name[20];} s; B: struct {int num, char name[20];} s; C: struct student{int num, char name[20];}; struct student s; D: struct student{int num, char name[20];} ; student s

    以下变量定义,错误的是: A: struct student{int num, char name[20];} s; B: struct {int num, char name[20];} s; C: struct student{int num, char name[20];}; struct student s; D: struct student{int num, char name[20];} ; student s

  • 2022-06-04 问题

    下面定义结构变量的语句中错误的是。 未知类型:{'options': ['struct student{ int num; char name&#91;20&#93;; } s;', 'struct { int num; char name&#91;20&#93;; } s;', 'struct student{ int num; char name&#91;20&#93;; }; struct student s;', 'struct student{ int num; char name&#91;20&#93;; }; student s;'], 'type': 102}

    下面定义结构变量的语句中错误的是。 未知类型:{'options': ['struct student{ int num; char name&#91;20&#93;; } s;', 'struct { int num; char name&#91;20&#93;; } s;', 'struct student{ int num; char name&#91;20&#93;; }; struct student s;', 'struct student{ int num; char name&#91;20&#93;; }; student s;'], 'type': 102}

  • 2022-06-08 问题

    以下程序段的输出结果是( )。int main(){int num=0,s=0;while(num<=2) { num++; s+=num; } printf("%d\n",s);}A)10 B)6 C)3 D)1 A: 1 B: 3 C: 10 D: 6

    以下程序段的输出结果是( )。int main(){int num=0,s=0;while(num<=2) { num++; s+=num; } printf("%d\n",s);}A)10 B)6 C)3 D)1 A: 1 B: 3 C: 10 D: 6

  • 2021-04-14 问题

    以下代码,要求通过调用函数mean计算出列表元素的平均值,并输出。请完善代码。‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬ def mean(numlist): s = 0.0 for num in numlist: s = s + num return s/len(numlist) ls = [11,43,23,37,61,29] print("平均值为:",【 】)

    以下代码,要求通过调用函数mean计算出列表元素的平均值,并输出。请完善代码。‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬‬ def mean(numlist): s = 0.0 for num in numlist: s = s + num return s/len(numlist) ls = [11,43,23,37,61,29] print("平均值为:",【 】)

  • 2021-04-14 问题

    关于属性的使用正确的是? private int num;public string Num{get{return num;};set{num=value;}}|private int num;private int Num{get{return num;}set{num=value;}}|private int num;public int Num{get{return num;}set{num=value;}}|private int num;public int Num{get{num=value;}set{return num;}}

    关于属性的使用正确的是? private int num;public string Num{get{return num;};set{num=value;}}|private int num;private int Num{get{return num;}set{num=value;}}|private int num;public int Num{get{return num;}set{num=value;}}|private int num;public int Num{get{num=value;}set{return num;}}

  • 2022-05-29 问题

    中国大学MOOC: @num = (3,5,2,1,4);@num = sort(@num);push(@num, (6,7,8,9));pop(@num);shift(@num);执行以上语句后,@num=?

    中国大学MOOC: @num = (3,5,2,1,4);@num = sort(@num);push(@num, (6,7,8,9));pop(@num);shift(@num);执行以上语句后,@num=?

  • 2022-05-29 问题

    关于属性的使用正确的是 A: private int num;public string Num{get{return num;} set{num=value;}} B: private int num;public int Num{get{return num;}set{num=value;}} C: private int num;public int Num{get{num=value;}set{return num;}} D: private int num;private int Num{get{return num;}set{num=value;}}

    关于属性的使用正确的是 A: private int num;public string Num{get{return num;} set{num=value;}} B: private int num;public int Num{get{return num;}set{num=value;}} C: private int num;public int Num{get{num=value;}set{return num;}} D: private int num;private int Num{get{return num;}set{num=value;}}

  • 1 2 3 4 5 6 7 8 9 10