摘要: 简单模拟View Code #include <iostream>#include <string>#include <algorithm>using namespace std;const int maxn = 100002;int n;string telephone[maxn];void make(string &a){ int i; for (i = 0; i < a.length(); i++) { while (a[i] == '-' && i < a.length()) a... 阅读全文
posted @ 2012-11-26 09:03 undefined2024 阅读(151) 评论(0) 推荐(0)