数据结构题。输出单链表中所有偶数元素及序号的c语言编程答案
数据结构题。输出单链表中所有偶数元素及序号的c语言编程答案
日期:2015-11-24 17:30:54 人气:1
#include
#include
#include
#define SN 2 //科目数量(score number)
typedef struct student
{
char num[10],
name[10];
float score[SN],
sum,
avg;
struct student *next;
}STU;
/**********输入链表单元内容************/
v