【C语言更新】结构体的定义及使用
struct Mobilephone
{
char *brand;
char *model;
float length;
float width;
float thickness;
float screen_size;
float price ;
};
Mobilephone Pear13MiniInfo, Pear13Info, Pear13MaxInfo,Pear13MaxPlusInfo;
赞 (0)
struct Mobilephone
{
char *brand;
char *model;
float length;
float width;
float thickness;
float screen_size;
float price ;
};
Mobilephone Pear13MiniInfo, Pear13Info, Pear13MaxInfo,Pear13MaxPlusInfo;