导航

2014年3月31日

摘要: 博客已迁至 blog.csdn.net/kzzhr 阅读全文

posted @ 2014-03-31 18:40 Mis'World 阅读(108) 评论(0) 推荐(0)

2012年11月22日

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=2043最基础的模拟题目,只要按照题目给出的要求进行判断即可。代码如下: 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 const string s="~!@#$%^"; 5 string ss; 6 int n; 7 int yes(string a){ 8 if (a.size()<8 || a.size()>16) return 0; 9 int t1,t2 阅读全文

posted @ 2012-11-22 19:17 Mis'World 阅读(226) 评论(0) 推荐(0)