上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: #include<iostream> #include<string> using namespace std; int b; string c,d; string jiami(string a,int key){ c=""; for(int i=0;i<a.size();i++){ if(a[i] 阅读全文
posted @ 2024-01-28 15:57 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑
摘要: class tong{ private: int x; int a[100000]={0}; int m=5; public: void set(){ std::cout<<"请输入5个数进行比较:"; for(int i=0;i<5;i++){ std::cin>>x; a[x]++; } } v 阅读全文
posted @ 2024-01-28 10:42 陈若麟 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #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:02 陈若麟 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main(){ int n,a,b=0,d; cin>>n; int c=n; while(c!=0){ a=0; for(int i=1;i<=c;i+=3){ if(i==c && b==0){ b=d+1; 阅读全文
posted @ 2024-01-21 08:53 陈若麟 阅读(99) 评论(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 09:47 陈若麟 阅读(11) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream> //#include<list> //using namespace std; //int main(){ // list<int> b={6,7,8,9,10}; // list<int> a={1,2,3,4,5}; // b.splice(b.begi 阅读全文
posted @ 2023-12-31 09:53 陈若麟 阅读(1) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream> //#include<deque> //using namespace std; //int main(){ // int n; // cin>>n; // int b[n]; // for(int i=0;i<n;i++){ // cin>>b[i]; / 阅读全文
posted @ 2023-12-31 09:31 陈若麟 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include "windows.h" using namespace std; int main(){ system("title aaa"); system("tasklist"); while(1){ system("color 1D"); Sleep 阅读全文
posted @ 2023-12-30 09:32 陈若麟 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<vector> #include<windows.h> using namespace std; int a=999; int b=0; bool c=false; struct student{ string name; int age; i 阅读全文
posted @ 2023-12-16 09:53 陈若麟 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <windows.h> using namespace std; /*声明变量 */ HWND hand=NULL; //游戏窗口 DWORD pid=0;//游戏进程ID HANDLE hProcess=NULL;//进程对象 DWORD 阅读全文
posted @ 2023-12-15 19:30 陈若麟 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页