摘要: 门禁系统: #include <bits/stdc++.h> using namespace std; //记录当前出现几次 int a[1000]={0}; int main() { int n,t; cin>>n; for(int i=0;i<n;i++) { cin>>t; a[t]++; c 阅读全文
posted @ 2021-04-29 22:05 知马力lly 阅读(33) 评论(0) 推荐(0) 编辑
摘要: ISBN号码: #include <bits/stdc++.h> using namespace std; int main() { string a; cin>>a; int num=0,sum=0; for(int i=0;i<a.length()-1;i++) { if(a[i]!='-') 阅读全文
posted @ 2021-04-29 21:56 知马力lly 阅读(38) 评论(0) 推荐(0) 编辑
摘要: QT参考下载:👇 http://c.biancheng.net/view/3851.html windows下安装QT:👇 http://c.biancheng.net/view/3858.html 参考教程:👇 https://blog.csdn.net/qq_38313246/articl 阅读全文
posted @ 2020-11-16 18:35 知马力lly 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 👉学校信息门户的软件正版化服务平台👈 以Adobe Photoshop CS2为例 以管理员身份运行 安装时填写这个序列号👇 阅读全文
posted @ 2020-11-05 14:45 知马力lly 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 用vim把printDot里代码写过来 可以发现:可以编译 不能运行 so下载 VMwareTools!!!!!!!!! 啊 装上了。。。。。。 【关于代码修改】 比如两个字👇 char str1[] = "计"; //要显示点阵信息的汉字char str2[] = "算"; 读一下主函数里代码, 阅读全文
posted @ 2020-10-26 23:22 知马力lly 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 原来的项目是用VC++6建的,如果有奇奇怪怪无法解决的问题,可以新建一个空项目。。。。。。 把代码粘贴过来,把chs16.fon放在项目里 如果再报fopen的错误,加这个👇 报char*的错误,改成这个👇 阅读全文
posted @ 2020-10-25 19:13 知马力lly 阅读(79) 评论(0) 推荐(1) 编辑
摘要: sudo apt-get install golang(输入密码时不显示,输入完成回车~遇到一些问题解决后不能继续可尝试重启): 等待至安装完成: 在Documents中新建一个GoProject文件夹(存放GO语言程序),配置环境变量: go run xx.go即可 阅读全文
posted @ 2020-10-16 19:47 知马力lly 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 创建test.c文件: 回车,键入“i”切换为编辑,输入代码: esc切换至命令,键入:wq!保存并退出(!只读情况强制修改): 编译运行: 阅读全文
posted @ 2020-10-16 19:35 知马力lly 阅读(304) 评论(0) 推荐(0) 编辑
摘要: //遍历所有按钮 foreach (Control x in this.Controls) { Control y = x as Button; if (y != null) { //操作 } } //遍历n个按钮 for(int i=1;i<n;i++) { Button btn = this.C 阅读全文
posted @ 2020-10-10 14:13 知马力lly 阅读(96) 评论(0) 推荐(0) 编辑
摘要: //使用数组:分为数字数组和运算符数组,遍历所有运算符,先处理两个优先级高的运算符———乘和除,然后再处理加和减//【注意】搜索乘除时,检索运算符只需三次,t来指示当前检索的运算符,加减时才进行++#include<iostream> using namespace std; int main() 阅读全文
posted @ 2020-09-26 16:52 知马力lly 阅读(22) 评论(0) 推荐(0) 编辑
Document