Problem Description Password security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are ...
分类:
其他好文 时间:
2017-07-31 12:34:06
阅读次数:
170
#include
#include
#include
using namespace std;
bool f(char c)
{
if(c=='a'||c=='e'||c=='i'||c=='o'||c=='u') return true;
return false;
}
int main()
{
string s;
while(cin>>s&&s!="end")
{
...
分类:
其他好文 时间:
2015-08-21 13:36:23
阅读次数:
150
Easier Done Than Said?
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7822 Accepted Submission(s): 3863
Problem Description
Pas...
分类:
其他好文 时间:
2014-08-25 22:58:55
阅读次数:
311