上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: #include<iostream> using namespace std; class Box{ private: double length; double width; public: void setLength(double length); void setWidth(double w 阅读全文
posted @ 2024-01-27 09:09 王ys 阅读(9) 评论(0) 推荐(0)
摘要: 快捷命令 L 直线 M 移动 C 圆 EL 椭圆 XL 射线 轴线 RO 旋转 E 删除 H填充 TR 修剪 EX 延伸 PO 点 S 拉伸 U 返回 DDI 直径标注 DAN 角度标注 OP 系统选项设置 A 圆弧 T 多行文字 B 块定义 I 块插入 W 定义块文件 CO 复制 MI 镜像 O 阅读全文
posted @ 2024-01-14 10:01 王ys 阅读(42) 评论(0) 推荐(0)
摘要: 1. #include<iostream> #include<list> using namespace std; int main(){ list<int> a={1,2,3,4,5}; list<int> b={6,7,8,9,10}; list<int>::iterator i; a.spli 阅读全文
posted @ 2024-01-05 19:45 王ys 阅读(14) 评论(0) 推荐(0)
摘要: #include<iostream> #include<list> #include<algorithm> using namespace std; int main(){ list<int> a; int b[]={1,2,3,4}; list<int> c(b,b+sizeof(b)/sizeo 阅读全文
posted @ 2023-12-31 10:00 王ys 阅读(7) 评论(0) 推荐(0)
摘要: 删除指定数字 #include<iostream> #include<deque> using namespace std; int main(){ int n,x; cin>>n; int m[n]; for(int i=0;i<n;i++){ cin>>m[i]; } deque<int> a( 阅读全文
posted @ 2023-12-31 09:36 王ys 阅读(11) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-12-31 08:47 王ys 阅读(13) 评论(0) 推荐(0)
摘要: #include<iostream> #include<vector> #include<windows.h> using namespace std; bool b=false; int m,l_m,age,grade; string name; struct Student{ int id; s 阅读全文
posted @ 2023-12-29 19:56 王ys 阅读(24) 评论(0) 推荐(0)
摘要: #include<iostream> #include<windows.h> using namespace std; HWND hand=NULL; DWORD pid=0; HANDLE hProcess=NULL; DWORD BaseValue=0; DWORD SunshineAddres 阅读全文
posted @ 2023-12-23 09:32 王ys 阅读(46) 评论(0) 推荐(0)
摘要: #include <iostream> #include "minecraft.h" using namespace std; int main(int argc, char** argv) { TxMinecraft mc; bool con=mc.ConnectMinecraft("zk.mak 阅读全文
posted @ 2023-12-10 09:24 王ys 阅读(71) 评论(0) 推荐(0)
摘要: 删除指定数字 #include<iostream> #include<vector> using namespace std; int main(){ int n,x; cin>>n; int m[n]; for(int i=0;i<n;i++){ cin>>m[i]; } vector<int> 阅读全文
posted @ 2023-12-09 10:00 王ys 阅读(27) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页