摘要: #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #define MAXCHAR 101 //最大允许字符串长度 //将字符转换成数字 int char_to_num(char ch) { if (ch >= '0' && ch <= '9') r 阅读全文
posted @ 2023-04-23 17:13 258333 阅读(6) 评论(0) 推荐(0) 编辑