码迷,mamicode.com
首页 >  
搜索关键字:const char p    ( 57984个结果
获取页面编码类型
我们用爬虫爬取页面时会出现因解码方式错误出现乱码。需要去查询页面的编码方式。直接F12中控制台输入document.charset ...
分类:其他好文   时间:2021-06-13 09:54:01    阅读次数:0
js数字转中文
突然有这么个需求,变量列表,索引现实为中文 const toChinesNum = (num) => { let changeNum = ['零', '一', '二', '三', '四', '五', '六', '七', '八', '九']; //changeNum[0] = "零" let unit ...
分类:Web程序   时间:2021-06-13 09:51:06    阅读次数:0
题解 CF703D Mishka and Interesting sum
这题非常类似 P1972 [SDOI2009]HH的项链,这是数颜色的题目的常见套路。 首先,出现偶数次的数的异或和 转化为 所有数的异或和 与 所有不重复数的异或和 的异或和。 前者是前缀和可以搞定的,后者就是区间数颜色的做法。先处理出每个点的颜色上一次出现位置 \(pre\)。离线询问,按右端点 ...
分类:其他好文   时间:2021-06-13 09:35:49    阅读次数:0
VUEX
VUEX 1、安装 cnpm install vuex--save 2、导入,src下新建一个文件夹vuex,文件夹下新建一个store.js import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex); 3、state 相当于vue项目的 ...
分类:其他好文   时间:2021-06-13 09:32:07    阅读次数:0
解决pycharm里面用pyinstaller打包成exe文件过大问题
我是直接在pycharm里面直接打开下方Teminal 窗口 ,然后利用 来打包的,但是搞出来后有196m,给别人用也不好用。 看了网上大家的说法,说因为我们安装的是Anaconda,里面很多库连接进去了很多不必要的其他库和包,所以一大堆东西全打包进去了。 解决办法1 有人说用pipenv创建一个虚 ...
分类:其他好文   时间:2021-06-11 18:33:16    阅读次数:0
c语言中fgetc函数:显示文件内容
1、显示a.txt文件的内容 #include <stdio.h> int main(void) { FILE *fp; int ch; char filename[FILENAME_MAX]; printf("Please input the filename: "); scanf("%s", f ...
分类:编程语言   时间:2021-06-11 18:30:11    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:28:53    阅读次数:0
实验六 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:23:03    阅读次数:0
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:22:43    阅读次数:0
实验6 结构体
1. #include<stdio.h>#include<stdlib.h>#include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:20:49    阅读次数:0
57984条   上一页 1 ... 12 13 14 15 16 ... 5799 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!