自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 c++ 实现倒计时程序 使用clock()

倒计时程序

2021-12-24 13:35:09 3176

原创 python 使用selenium框架爬取王者荣耀官网壁纸

import seleniumfrom selenium import webdriverimport timefrom threading import Threadimport requestsimport osfrom selenium.webdriver.support import uifrom selenium.webdriver.common.by import Bydef seek_link(browser,address,page): container = .

2021-12-23 17:53:44 288

原创 python 编译为可执行文件

安装pip3 install pyinstaller然后编译pyinstaller -F main.py

2021-12-23 17:49:22 467

原创 deepin python Message: unknown error: cannot find Chrome binary

from selenium import webdriverfrom selenium.webdriver.chrome.service import Servicetry: # browser = webdriver.Chrome('/opt/apps/cn.google.chrome/files/chrome') s = Service(r"/opt/apps/cn.google.chrome/files/chrome") driver = webdriver.Chrome(.

2021-12-21 14:05:35 579

原创 C++汉诺塔

#include <iostream>#include <vector>#include <algorithm>using namespace std;void hannuota(int &res, int shikuai, string a, string b, string c){ if (shikuai == 1) { res++; cout << "第" << res .

2021-12-20 18:13:57 449

原创 C++时间戳转换

#include <iostream>#include <time.h>#include <unistd.h>using namespace std;int main(){ time_t t; struct tm p, q; time(&t); for (int i = 0; i < 6; i++) { t -= 10; char time22[30]; .

2021-10-29 17:51:44 187

原创 C++查找英文书籍最多的单词

#include<iostream>#include<fstream>#include<string>#include<set>#include<map>#include<vector>#include<algorithm>using namespace std;bool cmp(pair<string, int> &a, pair<string, int> &b) .

2021-10-20 17:32:27 71

原创 (超简单)cpp-httplib搭建服务器和客户端

这里使用了httplib.h,是直接使用的别人封装好的库,超简单搭建服务器和客户端,但是要学习还是得自己一步一步的去敲,不要用库,学会在用这个库就简单服务端#include "httplib.h"#include "json.hpp"#include <iostream>#include <thread>using namespace std;using namespace httplib;struct test{ string name; int

2021-10-13 10:34:24 6853 3

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除