摘要: 论文编写自排版-Latex Latex编辑器-Texstudio 数学公式生成tex代码-Mathpix Snipping Tool Latex表格数据排版-https://tableconvert.com/?output=latex Latex创建表格-http://www.tablesgener 阅读全文
posted @ 2020-02-21 08:44 Accept_program 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 首先安装好Eletron-ssr 配置好文件 打开终端键入 export http_proxy="http://127.0.0.1:12333" export https_proxy="http://127.0.0.1:12333" 验证节点是否生效: 终端键入 Curl www.google.co 阅读全文
posted @ 2019-10-22 14:07 Accept_program 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1、打开命令行 2、键入 gedit ~/.bashrc 3、找到如下: 4、修改用户名的颜色[\033[00;34m\],这里只修改00;34m\;这里00是指是否要高亮,34指的是颜色。后面同理 5、00类似代码可酌情修改 6、34颜色代码可酌情修改 阅读全文
posted @ 2019-10-09 13:50 Accept_program 阅读(1222) 评论(0) 推荐(0) 编辑
摘要: 题目 思路 代码 总结 题目: 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], t 阅读全文
posted @ 2019-09-16 23:55 Accept_program 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、进入终端,键入xinput list。目的是罗列出当前正在使用的硬件。 2、键入xinput disable id(这里的id指的是硬件号数) 3、恢复使用xinput enable id。 阅读全文
posted @ 2019-09-16 20:02 Accept_program 阅读(1272) 评论(0) 推荐(0) 编辑
摘要: 1.1.1 计算机的软硬件概念 计算机系统由硬件和软件组成。 而计算机的软件又分为两大类:系统软件和应用软件。 系统软件:管理整个计算机系统,监视计算机的运行过程,使系统资源得到合理的调度、高效运行。 应用软件:根据用户的任务需求所编制的各种程序。 1.1.2 计算机系统的层次结构 计算机系统的层次 阅读全文
posted @ 2019-09-04 21:51 Accept_program 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 int f(int n) 3 { 4 return n == 0 ? 1 : f(n-1)*n; 5 //当n=0时返回1,否则返回f(n-1)*n 6 } 7 int main() 8 { 9 printf("%d\n", f(3)); 10 return 0; 11 } 阅读全文
posted @ 2019-08-13 09:35 Accept_program 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 很多linux默认python版本是2.7.5 但现在大部分操作使用的python版本是3.* 这里用最快的方法 一、打开终端键入:sudo vi ~/.bashrc 二、向其中插入: alias python='python3' 三、退出保存 四、终端输入:source ~/.bashrc 五、完 阅读全文
posted @ 2019-08-07 10:57 Accept_program 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 首先进行排查: 1、打开命令行键入:rfkill list all 2、这里的0 1 2 3指的是优先硬件使用顺序,可以知道在deepin在联想机身影响下是默认开启Hard blocked选项的,即关闭了硬件wifi网卡的开关。 再看2是可以正常使用的,所以我们只需要移除2之前的wifi的网卡模板就 阅读全文
posted @ 2019-08-06 19:12 Accept_program 阅读(1232) 评论(0) 推荐(0) 编辑
摘要: 题目 代码 解释 总结 题目: Draw a chessboard which has a height of H cm and a width of W cm. For example, the following figure shows a chessboard which has a hei 阅读全文
posted @ 2019-08-05 11:22 Accept_program 阅读(238) 评论(0) 推荐(0) 编辑