上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页
摘要: 输出格式 #include<iostream> #include<iomanip> cout << setfill('0'); cout << rst/1000 << ',' << setw(3) << rst%1000; or #include<cstdio> printf("%d,%03d", 阅读全文
posted @ 2020-07-29 22:42 Hellofds 阅读(87) 评论(0) 推荐(0)
摘要: Ubuntu设置 1. 安装ssh并检查状态 sudo apt-get install openssh-server service ssh status 2. 配置防火墙并检查状态 sudo ufw default deny sudo ufw enable sudo ufw allow 22 su 阅读全文
posted @ 2020-06-02 19:56 Hellofds 阅读(766) 评论(0) 推荐(0)
摘要: 传送门:https://deerchao.cn/tutorials/html/html.htm <应该使用&lt;代替,>则使用&gt;,至于&符号本身则应该使用&amp;替代 ( '<': less than, '>': greater than, '&': ampersand ) 如果要显示连续 阅读全文
posted @ 2020-02-01 19:46 Hellofds 阅读(178) 评论(0) 推荐(0)
摘要: C++编程考试使用的实时提交系统,具有即时获得成绩排名的特点。它的功能是怎么实现的呢? 我们做好了题目的解答,提交之后,要么“AC”,要么错误,不管怎样错法,总是给你记上一笔,表明你曾经有过一次错误提交,因而当你一旦提交该题“AC”后,就要与你算一算帐了,总共该题错误提交了几回。虽然你在题数上,大步 阅读全文
posted @ 2019-02-11 22:15 Hellofds 阅读(409) 评论(0) 推荐(0)
摘要: Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in th 阅读全文
posted @ 2019-02-09 14:02 Hellofds 阅读(185) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页