资源简介
《C语言程序设计实验指导》(颜晖,张泳主编)102页答案
代码片段和文件信息
#include
#include
#include
struct stud_node{
int num;
char name[20];
int score;
struct stud_node * next;
};
int main(void)
{
struct stud_node * head* tail* p;
int numscore;
char name[20];
int size = sizeof(struct stud_node);
head = tail = NULL;
printf(“Input numname and score:\n“);
scanf(“%d“&num);
while(num != 0){
p = (struct stud_node *)malloc(size);
scanf(“%s%d“name&score);
p -> num = num;
strcpy(p -> namename);
p -> score = score;
p -> next = NULL;
tail -> next = p;
tail = p;
scanf(“%d“&num);
}
for(p = head;p -> next != NULL;p = p -> next)
printf(“%d%d%d\n“p -> nump -> namep -> score);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-12-21 08:58 102\
文件 718 2011-12-19 22:48 102\1.cpp
- 上一篇:仓库管理系统 vc++
- 下一篇:MFC 计算器源代码
评论
共有 条评论