2018年10月12日

摘要: C#实现按键计算器功能 (一次失败的编程) 界面: 代码如下: 运行结果: 不足:1.未处理数据溢出的情况 2.只支持整型数据运算,还不能进行浮点运算 阅读全文
posted @ 2018-10-12 11:55 我有点帅哦 阅读(1936) 评论(0) 推荐(0) 编辑
 
摘要: 查看win10系统产品密钥 1.win+R 输入Regedit运行注册表 2.找到(在HKEY_LOCAL_MACHINE–》SOFTWARE–》Microsoft–》Windows NT–》CurrentVersion–》SoftwareProtectionPlatform里面的BackupPro 阅读全文
posted @ 2018-10-12 09:26 我有点帅哦 阅读(423) 评论(0) 推荐(0) 编辑

2018年10月11日

摘要: 练习题:试使用编程实现银行、ATM等功能 运行结果: 阅读全文
posted @ 2018-10-11 18:44 我有点帅哦 阅读(2589) 评论(0) 推荐(0) 编辑

2018年10月10日

摘要: pip install requests 阅读全文
posted @ 2018-10-10 17:01 我有点帅哦 阅读(2318) 评论(0) 推荐(0) 编辑
 
摘要: python2.7安装beautifulsoup包 准备条件: 1.已经安装好python2.7 2.下载beautifulsoup包,选择合适的包,网址:https://www.crummy.com/software/BeautifulSoup/bs4/download/4.5/ 3.将其解压到p 阅读全文
posted @ 2018-10-10 16:44 我有点帅哦 阅读(2929) 评论(0) 推荐(0) 编辑

2018年7月12日

摘要: 有时候,我们获得一段视频,需要将其中的每一帧都提取出来,来进行一些相关的处理,这时候我们就可以需要用到ffmpeg.exe来进行视频帧的提取。 ffmpeg简介:FFmpeg是一套可以用来记录、转换数字音频、视频,并能将其转化为流的开源计算机程序。采用LGPL或GPL许可证。它提供了录制、转换以及流 阅读全文
posted @ 2018-07-12 19:02 我有点帅哦 阅读(1694) 评论(0) 推荐(0) 编辑

2018年6月14日

摘要: #include "stdafx.h" #include #include #include #define N 10 int getA(int arcs[N][N], int n)//按第一行展开计算|A| { if (n == 1) { return arcs[0][0]; } int ans = 0; int temp[N... 阅读全文
posted @ 2018-06-14 00:09 我有点帅哦 阅读(10844) 评论(0) 推荐(0) 编辑

2018年6月13日

摘要: #include "stdafx.h" #include #include #include #define NUM 3 int Fun(int n, int a[NUM][NUM]); /*函数声明*/ int main() { int i = 0, j = 0; /*i,j分别表示行与列*/ ... 阅读全文
posted @ 2018-06-13 23:31 我有点帅哦 阅读(4114) 评论(0) 推荐(0) 编辑

2018年5月20日

摘要: 程序功能:实现两个矩阵相乘的C语言程序,并将其输出 代码如下: 运行结果: 阅读全文
posted @ 2018-05-20 22:41 我有点帅哦 阅读(13913) 评论(1) 推荐(0) 编辑

2018年5月19日

摘要: 编译环境:VS2017 主文件为: 资源文件: 对话框截图: 运行结果: 阅读全文
posted @ 2018-05-19 11:10 我有点帅哦 阅读(2316) 评论(0) 推荐(0) 编辑