pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0
恢复内容开始 实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); for(n=1; n<=N; n++) { x = ran ...
分类:
其他好文 时间:
2021-04-16 12:00:33
阅读次数:
0
系统变量:全局变量、会话变量 自定义变量:用户变量、局部变量 一、系统变量 说明:变量由系统提供,不是用户定义,属于服务器层面,当服务器启动的时候,服务器会提供这样的系统变量,并赋予默认值,供我们使用。 1.全局变量 作用域:服务器每次启动将为所有全局变量赋初值,针对于所有会话(连接)有效,但不能跨 ...
分类:
其他好文 时间:
2021-04-16 11:42:09
阅读次数:
0
如果把字母 a 计为 1、b 计为 2、c 计为 3……z 计为 26,那么: knowledge = 96 hardwork = 98 attitude = 100 所以结论是: 知识( knowledge )与勤奋(hardwork)固然都很重要; 但是,决定成败的却是态度(attitude)! ...
分类:
编程语言 时间:
2021-04-15 12:41:40
阅读次数:
0
首先声明,本人遇到的Pycharm无法用pip安装PIL的问题和安装Pillow模块之后依然报错“No module named 'Pillow'”问题最终都得到了解决,相信很多人也遇到过,但由于系统,软件版本,运行环境等一系列问题,可能本博客的解决办法并不完全普适,但文章的最后,我总结了两种纠错方 ...
分类:
其他好文 时间:
2021-04-15 12:32:01
阅读次数:
0
先搭建本地YUM源 确认系统版本 [root@moke ~]# cat /etc/redhat-release CentOS Linux release 7.2.1511 (Core) [root@moke ~]# 准备资源: http://mirror.nsc.liu.se/centos-stor ...
分类:
其他好文 时间:
2021-04-15 12:18:08
阅读次数:
0
遍历中移除操作报错:java.util.ConcurrentModificationException Set<String> taskIdList = taskMapper.shelvesTaskV3();Set<String> collectionNames = markerTaskReposi ...
分类:
其他好文 时间:
2021-04-15 12:09:49
阅读次数:
0
int * Mystrstr(const char * str1, const char* str2) { char* p1 = NULL; char * p2 = NULL; char * cur = (char *)str1; if (*p2=='\0') { return cur; } whi ...
分类:
其他好文 时间:
2021-04-13 12:18:00
阅读次数:
0
Kruskal模板题,需要注意,这道题空间限制很严格,第一遍下意识的开了一个记录数组(因为一对节点之间允许多条路经,这里想着进行优化,不过弄巧成拙了,遇到了第一个MLE) #include <iostream> #include <algorithm> #include <queue> #inclu ...
分类:
其他好文 时间:
2021-04-13 11:44:47
阅读次数:
0
进入查看:2021-2022学年英语周报九年级第11期答案及试题 [易错点五] 副词莉莉,你为什么不回家呢?[误] Lily, why don’t you go to home?[正] Lily, why don’t you go home?[解析] home在这里是副词,动词后直接加副词。[易错点 ...
分类:
其他好文 时间:
2021-04-12 12:55:56
阅读次数:
0