C++入坑记(2)
函数,默认参数的使用 在C++中,允许在自定义函数的形参列表中,给形参一个默认的值,这样在调用的时候如果有实参,那么按照实参传递给形参的方法使用;若调用的时候没有指定对应的实参,则形参将使用默认值。 由于参数的传递顺序是从右至左入栈,所以有默认值的参数必须在放在形参列表的最右边!
函数,默认参数的使用 在C++中,允许在自定义函数的形参列表中,给形参一个默认的值,这样在调用的时候如果有实参,那么按照实参传递给形参的方法使用;若调用的时候没有指定对应的实参,则形参将使用默认值。 由于参数的传递顺序是从右至左入栈,所以有默认值的参数必须在放在形参列表的最右边!
A+B for Input-Output Practice(using C++) 1. Problem Description Your task is to Calculate a + b. Too easy?! Of course! I specially designed the problem for acm beginners. You must have found that some problems have the same titles with this one, yes, all these problems were designed for the same aim Input The input will consist of a series of pairs of integers a and b, separated by a space, one pair of integers per line. Output For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input. Sample Input 1 61 20 Sample Output 721
C++关键字 https://www.runoob.com/w3cnote/cpp-keyword-intro.html asm else new this auto enum operator throw bool explicit private true break export protected try case extern public typedef catch false register typeid char for return union const friend short unsigned const_cast goto signed using continue if sizeof virtual default inline static void delete int static_cast volatile do long struct wchar_t double mutable switch while dynamic_cast namespace template …
requests库入门实操 京东商品页面爬取 亚马逊商品页面的爬取 百度/360搜索关键字提交 IP地址归属地查询 网络图片的爬取和储存
Markdown编辑器使用-MarkdownPad2 imgur已被GFW干掉 快捷键 粗体 ctrl+B 斜体 ctrl+I 引用 ctrl+Q 代码 ctrl+K 超链接 ctrl+L 图片 ctrl+G 无序列表 ctrl+U 有序列表 ctrl+shift+O 水平标尺 ctrl+R 时间戳 ctrl+T 撤销 ctrl+Z 重做 ctrl+Y
Requests库入门 http://www.python-requests.org/en/master/ requests Requests库的7个主要方法 方法 说明 requests.request() 构造一个请求,支撑以下各方法的基本方法 requests.get() 获取HTML网面的方法 requests.head() 获取HTML网页头部信息的方法 requests.post() 向HTML网页提交POST请求的方法 requests.put() 向HTML页面提交PUT请求的方法 requests.patch() 向HTML网页提交局部修改请求 requests.delete() 向HTML网页提交删除请求
网易云音乐
Markdown浅尝 一、勾选框 注意[]前后都要有空格 1234- [x] 干的漂亮- [x] 吃饭- [x] 写代码- [ ] 睡觉 干的漂亮 吃饭 写代码 睡觉
博客评论系统的选择 怀念文:当时使用的主题是 yilla 其他评论系统参考 经过一波折腾,最终选择了Valine 我喜欢它的匿名评论,23333!!! 参考教程 作者的博客 Valine文档 https://github.com/litten/hexo-theme-yilia/pull/646 https://www.xxwhite.com/2017/Valine.html https://panjunwen.com/diy-a-comment-system/
兴奋于搭建了我的博客,兴奋于认识了markdown,终于可以甩开花里胡哨的word了,233333!!! 认识Markdown Markdown是一种可以使用普通文本编辑器编写的标记语言,通过简单的标记语法,它可以使普通文本内容具有一定的格式。 Markdown具有一系列衍生版本,用于扩展Markdown的功能(如表格、脚注、内嵌HTML等等),这些功能原初的Markdown尚不具备,它们能让Markdown转换成更多的格式,例LaTeX,Docbook。 Markdown增强版中比较有名的有Markdown Extra、MultiMarkdown、 Maruku等。这些衍生版本要么基于工具,如Pandoc;要么基于网站,如GitHub和Wikipedia,在语法上基本兼容,但在一些语法和渲染效果上有改动。 –引自百度百科