上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: #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) 编辑
摘要: #include <iostream> #include <windows.h> #include <fstream> using namespace std; struct card{ //属性 string name; int id; string classroom; float money= 阅读全文
posted @ 2023-11-19 10:02 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; string kong(string a){ while(a.find(" ")>=0&&a.find(" ")<=a.size()){ a.replace(a.find(" "),1,""); } retu 阅读全文
posted @ 2023-11-12 09:24 陈若麟 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <iomanip> #include <ctime> using namespace std; int row=16; int col=16; int all[17][17]; bool black=true; bool whilt; int 阅读全文
posted @ 2023-11-05 09:58 陈若麟 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int n(int a,int b){ if(a==b){ return 1; } if(a>b){ swap(a,b); } return n(a,b-a)+1; } int main(){ int a,b; cin 阅读全文
posted @ 2023-11-04 09:47 陈若麟 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ///* //自定义函数必须在调用该函数之前声明 //生命是可以不写函数体,但在后面需要将函数体补充完整 //按值传递德行参与调用函数类型一致 //*/ //#include <iostream> //using namespace std; //int sum(int a,int b){ // / 阅读全文
posted @ 2023-10-29 09:10 陈若麟 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ int a=10; int *p;//声明指针 p=&a;//将指针p指向变量a的内存地址 cout<<"a的值"<<a<<endl; cout<<"a的内存地址"<<p<<endl; *p=3 阅读全文
posted @ 2023-10-28 09:50 陈若麟 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std;string a;int c=0;void fam(){ if(a[0]=='0'){ cout<<a; }else{ cout<<'1'; for(int i=1;i<a.size();i++){ if(a[ 阅读全文
posted @ 2023-10-22 09:38 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页