摘要: 经过一个星期的学习和实践,终于搞出来了 一个星期,除了上课,就是干这个 终于功夫不负有心人 pycharm2019牛逼 跑两圈放松放松 终于可以歇歇了 程序的很多细节还需要继续完善 word和pdf中的表格还需继续思考如何处理 提高程序的异常处理能力 不能被特殊输入搞垮 本地文件的config 完善 阅读全文
posted @ 2020-09-24 20:59 houyz 阅读(1643) 评论(0) 推荐(1)
摘要: 我的服务器再次发生离奇事件 同样的代码 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>MathJax TeX Test Page</title> 5 <script type="text/x-mathjax-config"> 6 MathJax.Hub.C 阅读全文
posted @ 2020-09-17 20:32 houyz 阅读(135) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-09-12 20:50 houyz 阅读(9) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cstdio> #include <functional>//less<int> #include <algorithm> using namespace std; int main(){ int n; scanf("%d",&n); in 阅读全文
posted @ 2020-09-07 17:05 houyz 阅读(1806) 评论(0) 推荐(1)
摘要: 1019 General Palindromic Number (20分) A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For ex 阅读全文
posted @ 2020-09-02 16:40 houyz 阅读(278) 评论(0) 推荐(0)
摘要: 使用php实现了发送邮箱和短信的功能 服务器:腾讯云 Ubuntu 14 在本地测试成功,但是搬到服务器上就问题频发 1.邮箱 我使用的QQ邮箱发送的,首先要在QQ邮箱里面开启这些服务,才能发送 开启之后,服务器需要解封25端口 至此应该可以发送 了 2.短信 我使用的平台是云片网https://w 阅读全文
posted @ 2020-08-31 16:27 houyz 阅读(662) 评论(0) 推荐(0)
摘要: 头文件string.h #include <iostream> #include <string.h>//memset必带这个头文件 using namespace std; int main(){ int a[10][10]; memset(a,0,sizeof(a)); for(int i=0; 阅读全文
posted @ 2020-08-22 15:30 houyz 阅读(954) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip>//小数点必带这个头文件 using namespace std; int main(){ double t = 552.54467; double a = 3.1544545454; int b = 244; cout<< 阅读全文
posted @ 2020-08-22 15:17 houyz 阅读(598) 评论(0) 推荐(0)
摘要: c++中的结构体排序,最常用到的应该就是对结构体的某一个元素进行排序,其他元素与被排序元素关联 比如这样的结构体 typedef struct student{ int id; int math; int chinese; int english; }student; score[3]代表三门成绩, 阅读全文
posted @ 2020-08-22 15:09 houyz 阅读(2176) 评论(0) 推荐(0)
摘要: 012 The Best Rank (25分) To evaluate the performance of our first year CS majored students, we consider their grades of three courses only: C - C Progr 阅读全文
posted @ 2020-08-22 11:21 houyz 阅读(150) 评论(0) 推荐(0)