摘要: int IsNumber(const char * authcode, int len) { for (int i = 0; i < len; i++){ if (authcode[i] >= '0'&&authcode[i] <= '9'){ continue; } else{ return i; 阅读全文
posted @ 2020-08-28 16:47 晨光静默 阅读(1471) 评论(0) 推荐(0) 编辑