安装 pip install xlwt 快速开始 import xlwt # 创建一个workbook 设置编码 workbook = xlwt.Workbook(encoding = 'utf-8') # 创建一个worksheet worksheet = workbook.add_sheet(' ...
分类:
编程语言 时间:
2021-07-27 17:32:14
阅读次数:
0
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in ...
分类:
其他好文 时间:
2021-07-23 17:39:58
阅读次数:
0
using UnityEngine; using System.Collections; public class AudioPlay : MonoBehaviour { public static AudioPlay Instance; public AudioClip[] FuChuAudio; ...
分类:
编程语言 时间:
2021-07-21 17:40:35
阅读次数:
0
1. 问题描述 如果有三种硬币,2元,5元,7元,如何用最少的数量拼成27元? 2. 思路 (以后在更新吧) 3. 代码 // // Created by Administrator on 2021/7/20. // #ifndef C__TEST01_COINDP_HPP #define C__T ...
分类:
其他好文 时间:
2021-07-21 17:37:40
阅读次数:
0
3768. 字符串删减 - AcWing题库 思路 双指针的练习 C++代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; int main() { int n; string s; ...
分类:
编程语言 时间:
2021-07-19 16:34:51
阅读次数:
0
用malloc和free;类似与C++的new和delete 代码: #include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { void* ptr = (void*)ma ...
分类:
编程语言 时间:
2021-07-15 18:57:44
阅读次数:
0
立方数差 ? 题面 ? 题目描述 给出一个质数 \(p\),要求你判断这个质数是否是两个立方数的差,即判断是否存在正整数 \(a, b\) 满足 \(a^3-b^3=p\)。 输入格式 从文件 cubicp.in 中读入数据。 多组数据。 第一行给出一个 \(T\),表示有 \(T\) 组数据。 接 ...
分类:
其他好文 时间:
2021-07-12 17:59:25
阅读次数:
0
private string HttpRequest(Dictionary<string, object> dic, string url) { string json = JSONhelper.ObjToJson(dic); WebRequest request = WebRequest.Crea ...
分类:
Web程序 时间:
2021-07-07 17:56:22
阅读次数:
0
问题:出现错误:未定义标识符“vector” 解决办法: 导入#include <vector>还是不行 后来发现没有添加using namespace std; 添加: using namespace std; 即可!!! ...
分类:
其他好文 时间:
2021-07-05 19:07:46
阅读次数:
0
一、UML图 二、创建线程池 2.1、Executors工厂方法 在ThreadPoolExecutor类的文档注释中有这么一句话:An ExecutorService that executes each submitted task using one of possibly several p ...
分类:
编程语言 时间:
2021-07-05 18:34:44
阅读次数:
0