12 2023 档案

摘要://#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 陈若麟 阅读(11) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <windows.h> using namespace std; int main() { int value=0; int pid=0; cout<<"输入修改进程ID"; cin>>pid; HANDLE hProcess=NULL; D 阅读全文
posted @ 2023-12-15 19:26 陈若麟 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-12-15 18:42 陈若麟 阅读(3) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include<vector> using namespace std; int main(){ int n; cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } vector<int> b(a,a+si 阅读全文
posted @ 2023-12-09 09:59 陈若麟 阅读(14) 评论(0) 推荐(0) 编辑