第一个C++ 程序,写程序比读程序辛苦
#include <iostream> #include <fstream> #include <string> using namespace std; int main() { long ixold=0,ixnew=0; string::size_type pos; string strPassword; ofstream ofPassword; ofPassword.open("newdict.txt"); //保存到 新的密码档文件 cout << "pwsum.exe 命令提取包含数字的字典/n" "使用:pwsum < 原来的密码字典/n" "示例:D://>pwsum < E://桌面//奶瓶字典//fcicq-dict-unidict-20100410.txt/n"; // while(getline(cin , strPassword)) //整行处理 while(cin >> strPassword) { pos = strPassword.find("8"); if ( pos != string::npos ) { //密码是否有数字 ,并且包含有数字 8 // cout <<strPassword<< endl <<pos << endl; ofPassword <<strPassword<< endl; //密码写到文件 ixnew++; //新密码计数器 } ixold++; //旧密码计数器 if(ixold % 100000 == 0 ) cout << ">"; } cout <<"/n原来字典记录数目:"<< ixold <<"/n新的字典记录数目:"<< ixnew <<endl; ofPassword.close(); cout << "/n已经生成新的包含数字的新密码字典 newdict.txt" << endl; return 0; }
开始 写的 旧版本,使用C风格 字符比较函数
while(cin >> strpassword) { for(string::size_type ix=0; ix != strpassword.size(); ix++) { if (isdigit(strpassword[ix]) && '8'==strpassword[ix]) //密码是否有数字 ,并且包含有数字 8 { // cout <<strpassword<< endl; ofpassword <<strpassword<< endl; break; //如果有数字就下一个密码 } }