from turtle import * def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for ...
分类:
其他好文 时间:
2021-06-18 20:05:27
阅读次数:
0
一、简介 现在商业行为中,在水果出厂前都需要进行质量检测,需要将不同等级的水果进行分级包装,以保证商业利益最大化。可是传统方法都是依靠人工进行检测,效率低下,主观成分大,并不能很好客观地评价出货质量,导致工厂损失利益,增加客户投诉,从而造成品牌效率损失,造成隐形的损失。 该课题为基于MATLAB的水 ...
分类:
移动开发 时间:
2021-06-18 19:33:17
阅读次数:
0
string新技巧: int a, b; cin >> a >> b; string s = to_string(a + b); ...
分类:
其他好文 时间:
2021-06-18 19:21:57
阅读次数:
0
VS Code的下载和安装 1. 下载链接(本人下载版本VSCodeUserSetup-x64-1.57.0.exe) https://code.visualstudio.com/download 友情建议:直接从浏览器下速度贼慢,如果可以,复制链接到迅雷中,一下子就下好了。 2. 安装 由于本人已 ...
分类:
其他好文 时间:
2021-06-18 19:19:50
阅读次数:
0
error 1: Unable to open 'raise.c': Unable to read file '/build/glibc-S9d2JN/glibc-2.27/sysdeps/unix/sysv/linux/raise.c' (Error: Unable to resolve non- ...
分类:
其他好文 时间:
2021-06-18 18:49:18
阅读次数:
0
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if i ...
分类:
其他好文 时间:
2021-06-17 17:13:05
阅读次数:
0
场景: 以下为已有数据,过滤掉数据中 selectedStatus为false的数据,并生成一组新数据(注意:不能在原数据中进行操作) let treeData = [ { level: 0, parent_id: 0, name: "员工管理", id: 2, status: 1, selecte ...
分类:
Web程序 时间:
2021-06-17 17:05:59
阅读次数:
0
flex-shrink: 0; white-space: nowrap; ...
分类:
其他好文 时间:
2021-06-17 16:39:23
阅读次数:
0
1,操作系统变更 某个程序A,是在ubuntu12.04的虚拟机上编译QT4.8的源代码,并将最终的执行程序运行在ubuntu12.04系统上。 由于出货要更换主板,供应商提供的ubuntu操作系统版本确定为18.04。 测试结果表明,原ubuntu12.04的虚拟机上编译的执行程序无法直接运行在u ...
分类:
系统相关 时间:
2021-06-17 16:26:51
阅读次数:
0
1.下载安装 wget https://artifacts.elastic.co/downloads/kibana/kibana-7.0.0-x86_64.rpm yum install -y kibana-7.0.0-x86_64.rpm 2.修改配置文件 vim /etc/kibana/kiba ...
分类:
其他好文 时间:
2021-06-16 18:25:40
阅读次数:
0