zoukankan      html  css  js  c++  java
  • C++测试代码

    #include <ctime>

    #include <cstdlib>

    #include <string>

    #include <iostream>

    using namespace std;

    int main() {  

       string charSet;

       int times = 100;

       int magic, i;  

      char randomChar;

       srand(time(NULL));

       for (i = 1; i<= times; i++)  

        {   magic = rand()%26;  

           randomChar = 'a'+magic;

          charSet += randomChar;

         }

       cout << "random char set: "<<charSet<<endl;  return 0;

    }

    // #include<iostream>
    // using namespace std;
    // void swap(int *p1,int*p2)
    // {
    //  int temp;
    //  temp = *p1;
    //  *p1 = *p2;
    //  *p2 = temp;
    //
    // }
    // int main()
    // {
    //  int x1 = 3,x2 = 5;
    //  cout << "before swap,x1 = "<<x1<<",x2 = "<<x2<<endl;
    //  swap(&x1,&x2);
    //  cout << "after swap,x1 = "<<x1<<",x2 = "<<x2<<endl;
    // }

  • 相关阅读:
    TCL环境检查
    POI之Excel文档增删改查
    wireshark自动化之tshark命令行
    selenium-webdriver
    ruby自动化之selenium webGUI
    TCL自动化之SSH交互式
    链表的操作
    参考网址
    RTC定时开机闹钟
    中断
  • 原文地址:https://www.cnblogs.com/Star9527/p/3391166.html
Copyright © 2011-2022 走看看