摘要: #include<stdio.h> #define MaxSize 255 typedef struct { char ch[MaxSize]; int length; }SString; void InitStr(SString &S) { S.ch[0]='¥'; S.length=0; } v 阅读全文
posted @ 2020-07-12 21:15 石乐智先生 阅读(700) 评论(0) 推荐(0) 编辑