上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: #include <bits/stdc++.h> using namespace std; int jc(int a){ if(a<=2){ return a; } return jc(a-1)*a;; } int jch(int n){ int sum=0; if(n<=1){ return n; 阅读全文
posted @ 2024-07-10 15:57 fushuxuan1 阅读(11) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int n,sum=0; cin>>n; vector<int> b; b.push_back(1); for(int i=2;i<=n;i++){ for(int j=0;j<b.s 阅读全文
posted @ 2024-07-10 15:39 fushuxuan1 阅读(25) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include "minecraft.h" using namespace std; TxMinecraft mc; int main(int argc, char** argv) { bool con=mc.Connec 阅读全文
posted @ 2024-06-15 10:01 fushuxuan1 阅读(16) 评论(0) 推荐(0)
摘要: //客户端 #include"mysocket.h" //头文件 using namespace std; int main() { cout << " 客户端 \n"; startup(); //启动 //检测版本号 if (LOBYTE(wsdata.wVersion) != 2 || HIBY 阅读全文
posted @ 2024-06-08 10:02 fushuxuan1 阅读(25) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; vector<int> z(vector<int> x,vector<int> y){ vector<int> s(x.size(),0); int sum=0; for(int i=0;i<x.size() 阅读全文
posted @ 2024-06-07 19:47 fushuxuan1 阅读(18) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; vector<int> z(vector<int> x,int y){ vector<int> s; int sum=0; for(int i=0;i<x.size()||sum;i++){ if(i>=x. 阅读全文
posted @ 2024-06-01 14:32 fushuxuan1 阅读(16) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; vector<int> z(vector<int> x,vector<int> y){ int sum=0; vector<int> s(x.size()+y.size()+10,0); for(int i= 阅读全文
posted @ 2024-05-31 19:56 fushuxuan1 阅读(15) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; vector<int> z(vector<int> v,vector<int> n){ int m; m=max(v.size(),n.size()); vector<int> s(m+2,0); int s 阅读全文
posted @ 2024-05-25 14:55 fushuxuan1 阅读(17) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; void z(vector<int> v,int c){ vector<int> s; int sum=0; for(int k=0;k<v.size()||sum!=0;k++){ sum+=v[k]*c; 阅读全文
posted @ 2024-05-25 09:58 fushuxuan1 阅读(31) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> #include <windows.h> #include <conio.h>//控制台输入输出头文件 using namespace std; int main(){ HANDLE handle=GetStdHandle(STD_OUTPUT_HA 阅读全文
posted @ 2024-05-24 20:29 fushuxuan1 阅读(20) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 18 下一页