搜索资源列表
c2
- 1、 有n个学生,每个学生有m门成绩,每个学生的m门成绩用一单链表实现,n个学生所对应n个单链表的头指针用一指针数组统一存放。 1) 建立该存贮结构。 2) 查找第i个学生的某门课成绩。 链表中结点结构: struct node {char *nam;/*nam为课程名*/ float sco;/*sco为该门课程的成绩*/ struct node *link;/*link为指向下一课程结点的指针*/ -1, there are n students, e
1
- 编写一个程序,输出基本数据类型char, short, int, long, float, double和指针类型void *, char *, short *, int *, long *, float *, double *的数据类型的长度。-The preparation of a program, the output of basic data types char, short, int, long, float, double and pointer type void*, cha
hehe
- 设计一个程序,使之完成下列功能。 要求:(1)完成矩阵转换,输出转换前和转换后的矩阵。 (2)矩阵转换后,计算主对角线数之和,并输出。 1 2 3 4 13 9 5 1 5 6 7 8————》14 10 6 2 9 10 11 12 15 11 7 3 13 14 15 16 16 12 8 4 设计一个程序,将下列10个已知的常数按照从小到大的顺序进行排序,并打印排序的结果。 300,46,78,109,21,70,26,290,166,8,
ATMsystem
- 实现简单的提款机系统功能 struct account //添加账户结构体 { char name[30] int id int code float query } -Achieve a simple the teller system function struct account// add accounts struct {char name [30] int id int code float query }