首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴ljx8268771的代码贴全部
#include<stdio.h>

#define MATITL 40
#define MAAUTL 40
#define MABK 3

struct book{
    char title[MATITL];
    char author[MAAUTL];
    float value;
};
void print1(struct book guan[],int n);
......................
阅读全部 | 2012年12月20日 20:39
#include<stdio.h>

#define MATITL 40
#define MAAUTL 40
#define MABK 3

struct book{
    char title[MATITL];
    char author[MAAUTL];
    float value;
};
void print1(struct book guan[],int n);
......................
阅读全部 | 2012年12月20日 20:39
1
ljx8268771