打开CMD的方式 1. 开始+系统 + 命令提示符 Win键 + R 输入 cmd 打开控制台 管理员方式运行:选择以管理员方式运行 常用的Dos命令 1 #盘符切换 C;2 #查看当前目录下的所有文件 dir3 #切换目录 cd (change directory)4 #返回上一级 cd ..5 ...
分类:
其他好文 时间:
2020-07-29 00:47:47
阅读次数:
109
创建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版 MSDN 升级了win10的2020之后,很悲剧的发现,开始菜单空了 到C:\ProgramData\Microsoft\Windows\Start Menu\Programs 开始文件夹看了一下,快捷方式还在,单纯就是看不到了o(╥﹏╥)o 解决方法: 安装个软件或者找个 ...
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
分页符和分节符看着相似,其实不太一样 分节符: 设置了分节符以后,可以单独对当前节设置页边距、文字方向、纸张方向、纸张大小、分栏。点击这些设置的下三角按钮,可以选择将设置应用到:当前节、整个文档、光标后的文档 分页符: 当前文档单独设置为一页,分页符前可以输入内容,分页符后输入内容时,已输入内容自动 ...
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) ...
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 ...
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,& ...
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; } ...
#!/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