zoukankan      html  css  js  c++  java
  • c++ 生成随机密码

    #include <stdlib.h>
    #include <iostream>
    #include <time.h>
    #include <string>
    #include <stdio.h>
    using namespace std;
    
    int main(int argc, char* argv[])
    {
            cout << "请输入需要的密码长度:" << endl;
            int n;
            cin >> n;
    
            char chr[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
                    'A', 'B', 'C', 'D', 'E', 'F', 'G',
                    'H', 'I', 'J', 'K', 'L', 'M', 'N',
                    'O', 'P', 'Q', 'R', 'S', 'T',
                    'U', 'V', 'W', 'X', 'Y', 'Z',
                    'a', 'b', 'c', 'd', 'e', 'f', 'g',
                    'h', 'i', 'j', 'k', 'l', 'm', 'n',
                    'o', 'p', 'q', 'r', 's', 't',
                    'u', 'v', 'w', 'x', 'y', 'z'};
    
            srand(time(NULL));
            string strResult;
            char buf[10] = {0};
    
            for (int i=0; i<n; i++)
            {
                    int idx = rand()%62;
    //              printf("%c", chr[idx]);//字符输出
                    sprintf(buf, "%c", chr[idx]);
                    strResult.append(buf);
            }
            cout << strResult.c_str() << endl;
    
            return 0;
    }
    

      

  • 相关阅读:
    第一次个人编程作业
    软件工程博客作业1
    第一周作业
    预备作业
    没有权限访问路径
    Linux命令:pwd
    Linux命令:readonly
    Linux命令:read
    Bash:精华
    Linux命令:history
  • 原文地址:https://www.cnblogs.com/nanqiang/p/12467713.html
Copyright © 2011-2022 走看看