#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语言作业--结构体
最新推荐文章于 2023-03-05 11:29:17 发布