首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴查芒果的代码贴C语言
#include<stdio.h>
#include<stdlib.h>
#include<string.h>

struct books{
        char booknum[20];        //书号
        char bookname[20];       //书名
        char authorname[20];     //作者
        char cbs[20];            //出版社
        char price[5];           //价格 
        struct books *next; 
        struct books *prior;  
......................
阅读全部 | 2016年6月23日 11:31
1
查芒果