摘要: #include #include #include #include using namespace std; int charToInt(char str[], int n) { int count = 0; for (int i = n - 1; i >= 0; i--) count += (str[i] - '0')*pow(10, n - 1 - i)... 阅读全文
posted @ 2018-01-04 20:20 王毅2016 阅读(651) 评论(0) 推荐(0) 编辑