急!!!用C语言编写一完整程序,要求如下:

日期:2010-11-23 17:16:45 人气:1

急!!!用C语言编写一完整程序,要求如下:

#include #include typedef struct student *ST; struct student { int stNu; int stVal; ST next; }; ST head = NULL; int ShowNode() { int no; ST t; printf("输入学号:"); scanf("%d", &no); for (t = head; t; t = t-&
    A+
热门评论