码迷,mamicode.com
首页 >  
搜索关键字:Win Ser 2016新增功能    ( 19211个结果
狂神的课堂随记
打开CMD的方式 1. 开始+系统 + 命令提示符 Win键 + R 输入 cmd 打开控制台 管理员方式运行:选择以管理员方式运行 常用的Dos命令 1 #盘符切换 C;2 #查看当前目录下的所有文件 dir3 #切换目录 cd (change directory)4 #返回上一级 cd ..5 ...
分类:其他好文   时间:2020-07-29 00:47:47    阅读次数:109
vue封装sessionStoage存储信息
创建store文件夹下index.js文件 var KEY='rabbitStudent' export default{ setUser(user){ //将后端返回的对象转换成字符串 const JsonStr=Json.stringify(user) // 将返回的字符串存储到KEY中 win ...
分类:其他好文   时间:2020-07-28 22:43:38    阅读次数:72
win10升级2020版
win10升级2020版 MSDN 升级了win10的2020之后,很悲剧的发现,开始菜单空了 到C:\ProgramData\Microsoft\Windows\Start Menu\Programs 开始文件夹看了一下,快捷方式还在,单纯就是看不到了o(╥﹏╥)o 解决方法: 安装个软件或者找个 ...
分类:Windows程序   时间:2020-07-28 22:23:54    阅读次数:90
Exception code: 0xE0434352
0xE0434352 is the exception code for all .NET exceptions so that won't tell you much. How did you got this exception code? The event log? Your best be ...
分类:其他好文   时间:2020-07-28 16:56:56    阅读次数:69
windows分页符、分节符
分页符和分节符看着相似,其实不太一样 分节符: 设置了分节符以后,可以单独对当前节设置页边距、文字方向、纸张方向、纸张大小、分栏。点击这些设置的下三角按钮,可以选择将设置应用到:当前节、整个文档、光标后的文档 分页符: 当前文档单独设置为一页,分页符前可以输入内容,分页符后输入内容时,已输入内容自动 ...
分类:Windows程序   时间:2020-07-28 14:39:17    阅读次数:96
AcWing 788. 逆序对的数量
AcWing 788. 逆序对的数量 #include <bits/stdc++.h> using namespace std; typedef long long LL; const int N=1e6+10; int q[N],tmp[N]; LL merge_sort(int l,int r) ...
分类:Windows程序   时间:2020-07-28 14:30:34    阅读次数:88
AcWing 794. 高精度除法
AcWing 794. 高精度除法 #include <bits/stdc++.h> using namespace std; vector<int> div(vector<int> &A,int b,int &r){ vector<int> C; for(int i=A.size()-1;i>=0 ...
分类:Windows程序   时间:2020-07-28 14:27:06    阅读次数:80
AcWing 796. 子矩阵的和
AcWing 796. 子矩阵的和 #include <bits/stdc++.h> using namespace std; const int N=1e3+10; int a[N][N],S[N][N]; int main(){ int n,m,q; scanf("%d%d%d",&n,&m,& ...
分类:Windows程序   时间:2020-07-28 14:24:39    阅读次数:87
AcWing 797. 差分
AcWing 797. 差分 #include <bits/stdc++.h> using namespace std; const int N=1e6+10; int a[N],b[N]; void insert(int l,int r,int c){ b[l]+=c; b[r+1]-=c; } ...
分类:Windows程序   时间:2020-07-28 14:24:15    阅读次数:82
xpath案例-全国城市名爬取
#!/usr/bin/python import requests from lxml import etree #项目需求:解析出所有的城市名称https://www.aqistudy.cn/historydata/ if __name__ == "__main__": # headers = { ...
分类:其他好文   时间:2020-07-28 10:10:33    阅读次数:61
19211条   上一页 1 ... 62 63 64 65 66 ... 1922 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!