上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 1 #include 2 using namespace std; 3 4 namespace spaceA{ 5 int g_a = 10; 6 namespace spaceB{ 7 //定义一个结构体 8 struct teacher{ 9 int id; 10 char ... 阅读全文
posted @ 2019-03-11 21:58 zhangdingqu 阅读(1049) 评论(0) 推荐(0) 编辑
摘要: 1×1=12×1=2 2×2=43×1=3 3×2=6 3×3=94×1=4 4×2=8 4×3=12 4×4=165×1=5 5×2=10 5×3=15 5×4=20 5×5=256×1=6 6×2=12 6×3=18 6×4=24 6×5=30 6×6=367×1=7 7×2=14 7×3=21 阅读全文
posted @ 2019-03-01 22:19 zhangdingqu 阅读(3366) 评论(0) 推荐(0) 编辑
摘要: VS2013快捷键很多,灵活使用常用快捷键及各项技巧可以让你事半功倍。下面的visual studio 2013快捷键和操作技巧你知道多少? 1.回到上一个光标位置/前进到下一个光标位置 1)回到上一个光标位置:使用组合键“Ctrl + -”; 2)前进到下一个光标位置:“Ctrl + Shift 阅读全文
posted @ 2019-02-27 17:26 zhangdingqu 阅读(2671) 评论(0) 推荐(0) 编辑
摘要: 常用操作 clear() 移除容器中的所有数据 empty() 判断容易是否为空 size() 返回容器中元素的个数 [index]、at[index] 返回索引为index的元素 erase(pos) 删除POS位置处的数据 erase(beg,end) 删除【beg,end】区间的数据 fron 阅读全文
posted @ 2019-02-26 16:40 zhangdingqu 阅读(288) 评论(0) 推荐(0) 编辑
摘要: #include "pch.h" #include using namespace std; const float PI = 3.1415926; int main() { int iType; float readius, a, b; while (true){ cout > iType; switch (iType) { ... 阅读全文
posted @ 2019-01-27 12:33 zhangdingqu 阅读(8747) 评论(0) 推荐(0) 编辑
摘要: #include "pch.h" #include using namespace std; int main() { int i = 1, sum = 0; for (i = 1; i <=10; i++) //for 循环的三条语句:1、循环变量初始化 2、循环继续的条件 3、循环控制变量改变的语句 { sum += 1; } cout << "sum=" << sum <... 阅读全文
posted @ 2019-01-27 11:28 zhangdingqu 阅读(2817) 评论(0) 推荐(0) 编辑
摘要: MongoDB下载链接 https://www.mongodb.com/download-center/community WIndows的服务中,有一个服务需要以NT AUTHORITY\NetworkService用户启动,但怎么也启动不起来,使用本地系统帐户启动没有任何问题,但是换成Netwo 阅读全文
posted @ 2019-01-07 02:33 zhangdingqu 阅读(484) 评论(0) 推荐(0) 编辑
摘要: //class选择器【分类添加商品】 var a=document.getElementsByClassName("item-collection-detail__products-item__action") //循环点击 for (var i=120; i<130; i++) { a[i].click(); } 阅读全文
posted @ 2018-11-11 16:32 zhangdingqu 阅读(770) 评论(0) 推荐(0) 编辑
摘要: from PyQt5 import QtCore, QtGui, QtWidgets from PyQt5.QtWidgets import QApplication, QMainWindow import sys class Ui_MainWindow(object): def setupUi(self, MainWindow): MainWindow.setObje... 阅读全文
posted @ 2018-11-02 13:24 zhangdingqu 阅读(864) 评论(0) 推荐(0) 编辑
摘要: self.ip=requests.get('http:ip获取') self.ip=(self.ip.text).replace('\r','').replace('\n','') print('IP是', self.ip) self.proxies={'https':self.ip} response=requests.get(url,headers=self.headers,proxies... 阅读全文
posted @ 2018-11-01 21:25 zhangdingqu 阅读(237) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页