#include<stdio.h>//陈有乐 15号
#include<stdlib.h>
#include<assert.h>
typedef struct _Book
{
char title[30];
char author[20];
int pages;
float prices;
}Book;//typedef 起别名 Book换掉struct _Book
int main()
{
Book book[4] = {
{
"Journey to the West","吴承恩"
C语言作业--结构体
最新推荐文章于 2022-05-30 10:02:05 发布