个人喜欢将编辑器背景设置成豆沙绿,保护眼睛。在vs2019中豆沙绿背景以及consolas字体配置方法如下: 工具 → 选项 → 环境 → 字体和颜色,显示项为“纯文本”,设置项背景色:色调=85,饱和度=123,亮度=205,或者 rgb为199,237,204。字体设置成consolas,这是等 ...
分类:
其他好文 时间:
2021-06-06 19:35:42
阅读次数:
0
题目—01字符串 (shiyancang.cn) 1 #include<bits/stdc++.h> 2 using namespace std; 3 4 int main() 5 { 6 string a="0"; 7 int n; 8 cin>>n; 9 string ans=""; 10 if ...
分类:
其他好文 时间:
2021-06-06 19:01:00
阅读次数:
0
题目—吉祥物 (shiyancang.cn) 1 #include<bits/stdc++.h> 2 using namespace std; 3 int n,x; 4 int pos(int n) 5 { 6 int s=1,j=1; 7 while(s<n) 8 { 9 s+=j++; 10 } ...
分类:
其他好文 时间:
2021-06-06 18:58:39
阅读次数:
0
window下安装: 1.到官网上下载mysql(zip包) 》①mysql的bin目录下新建my.ini文件,配置参考如下: 》②path中配置好环境变量 》③以管理员身份运行mysql服务 mysql --install 安装服务,控制台会提示:Service successfully inst ...
分类:
数据库 时间:
2021-06-06 18:54:05
阅读次数:
0
airpods连接win10,暂停后再继续播放,声音会突然变大,解决方法如下,转自win10吧 问题描述:如果你用windows连接你的蓝牙设备,无法调节音量,那么继续往下看。 问题原因:从1803版本开始后,WIN10调整了蓝牙策略,默认启用了蓝牙绝对音量,但却没有提供对应的关闭选项 1、win+ ...
c语言中用结构体表示点的坐标,并计算两点之间的距离 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ double x; double y; }Point; double dist(P ...
分类:
编程语言 时间:
2021-06-06 18:46:18
阅读次数:
0
https://blog.csdn.net/u011365831/article/details/78530013 Unable to locate package错误,解决方法非常简单,终端输入以下命令即可: sudo apt-get update 究其原因,应该是刚安装,软件源还来不及更新,所以 ...
分类:
其他好文 时间:
2021-06-05 18:29:30
阅读次数:
0
docker删除镜像报错处理,Error response from daemon: conflict: unable to delete a945e7fd5401 (cannot be forced) - image has dependent child images ,删除为none的镜像 ...
分类:
其他好文 时间:
2021-06-05 18:28:16
阅读次数:
0
问题描述 Extension Installation Error An error occurred installing @jupyterlab/github. Error message: Please install Node.js and npm before continuing ins ...
分类:
Web程序 时间:
2021-06-04 19:15:49
阅读次数:
0