摘要: #include "stdafx.h" #include <iostream> using namespace std; bool isNumber(char *str) { char *p = str; if (*p == '0' && *(p+1) != '\0') //防止输入第一个为0后面跟 阅读全文
posted @ 2023-04-23 21:15 Maguyusi 阅读(42) 评论(0) 推荐(0)