Ta上传的资源 (0)

一个C的电费核算系统 typedef struct info { int type;//用户类型 float Price;//电价 float Price1;//基价 }elemtype; typedef struct list { elemtype elem[100]; int length; }
C 50