include int main(){ int i,j,m,n,k,p=0; printf("请问要输入几级方阵:"); scanf("%d",&n); j=(n n+n)/2; int a[j],b[n][n]; for(i=0;i=(n n+n)/2) b[i][j]=0; m++; } } f ...
分类:
其他好文 时间:
2019-05-07 23:01:58
阅读次数:
159
What Is Cloud Native Infrastructure? Infrastructure is all the software and hardware that support applications.This includes data centers, operating s ...
分类:
其他好文 时间:
2019-05-04 00:21:37
阅读次数:
109
之前用以下代码将实验结果用matplotlib show出来 画出的图都没什么问题,但忽然有一次数据量比较大,matplotlib开始报错,并且画出的图出现以下问题: 报错: 图: 看到坐标轴丢失,并且坐标都挤到一起了,先想到的会不会是数据太多轴坐标密集给挤一起了? = = too stupid… ...
分类:
其他好文 时间:
2019-04-28 15:22:45
阅读次数:
585
如下代码,data数据超过2千条时,每次输入字符过滤时非常卡 其原因: 每次输入变化,data就要从2000多条数据中过滤出目标元素,一过滤就导致AutoComplete下拉列表得变化,浏览器得重新绘制下拉列表的Dom,导致浏览器卡 解决办法一 采用防抖函数,在间隔时间内,连续输入字符串只在最后一个 ...
分类:
其他好文 时间:
2019-04-15 11:54:38
阅读次数:
317
ES7新特性 includes() 指数操作符 ES8新特性 async/await Object.values() Object.entries() Object.getOwnPropertyDescriptors() String padding 函数参数列表结尾允许逗号 开始学习ES7 &nb ...
分类:
其他好文 时间:
2019-04-12 11:47:07
阅读次数:
151
As a nutritionist helping people shed pounds, I often recommend incorporating portion-controlled desserts and treats into your diet. My book "Strong, ...
分类:
其他好文 时间:
2019-04-06 09:16:52
阅读次数:
189
ES6 新增常用字符串函数包括startsWith endsWith includes repeat 实例如下 ...
分类:
其他好文 时间:
2019-04-03 18:01:31
阅读次数:
117
一个物体从100米的高空自由落下。编写程序,求它在前3秒内下落的垂直距离。设重力加速度为10米/秒 ?2 ?? 。 输入格式: 本题目没有输入。 输出格式: 按照下列格式输出 height = 垂直距离值 结果保留2位小数。 include int main() { double height; h ...
分类:
其他好文 时间:
2019-03-27 17:01:38
阅读次数:
159
一直用的eclipse,但公司很多员工用的都是idea,便想试试,谁知导入maven项目后一直报错,最后发现编译后target中没有dao中的xml文件,导致监听器加载资源时一直报错, 最后经过反复查找,终于找到答案。 在pom.xml的<build>中添加: ...
分类:
系统相关 时间:
2019-03-26 15:08:32
阅读次数:
264
Ubuntu18.04基于NVIDIA2080安装TensorFlow-GPU1.13.1官方文档:注意版本兼容性https://tensorflow.google.cn/install/source其他请参考:Ubuntu16.04基于NVIDIA1080Ti安装TensorFlow-GPU安装环境系统:Ubuntu18.04.02desktop显卡:NVIDIAGeForceGTX2080显卡
分类:
系统相关 时间:
2019-03-26 09:22:16
阅读次数:
2691