上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
  2023年12月10日
摘要: #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:29 爱吃泡面的皮卡 阅读(8) 评论(0) 推荐(0) 编辑
  2023年12月1日
摘要: 阅读全文
posted @ 2023-12-01 19:31 爱吃泡面的皮卡 阅读(4) 评论(0) 推荐(0) 编辑
  2023年11月19日
摘要: #include <bits/stdc++.h> using namespace std; struct card { //属性 string name; int id; string classroom; float money; int money_type;//0人民币 1美元 2 泰铢 st 阅读全文
posted @ 2023-11-19 10:02 爱吃泡面的皮卡 阅读(38) 评论(0) 推荐(0) 编辑
  2023年11月11日
摘要: #include <iostream> #include<stack> #include<deque> #include<string> using namespace std; //C++混合四则运算 int pri(char c)//标识运算符优先级 { switch(c) { case '+' 阅读全文
posted @ 2023-11-11 09:47 爱吃泡面的皮卡 阅读(23) 评论(0) 推荐(0) 编辑
  2023年11月5日
摘要: #include <iostream> #include <iomanip> using namespace std; int row=16; int col=16; bool black=true; int all[17][17]; void F5(){ for(int ii=0;ii<=col; 阅读全文
posted @ 2023-11-05 09:33 爱吃泡面的皮卡 阅读(5) 评论(0) 推荐(0) 编辑
  2023年11月4日
摘要: #include<iostream> #include<algorithm> #include<cstdio> using namespace std; long long a,b,c,s=0; int main(){ scanf("%lld",&a); scanf("%lld",&b); whil 阅读全文
posted @ 2023-11-04 09:18 爱吃泡面的皮卡 阅读(11) 评论(0) 推荐(0) 编辑
  2023年11月3日
摘要: #include <fstream> #include <iostream> using namespace std; int main(){ char data[10000]; cin>>data; cout<<data; ofstream wangyianbo; wangyianbo.open( 阅读全文
posted @ 2023-11-03 20:06 爱吃泡面的皮卡 阅读(5) 评论(0) 推荐(0) 编辑
  2023年10月29日
摘要: //指针 #include <bits/stdc++.h> using namespace std; int sum(int *a){ int b=*a-1,c=*a-2; if(*a<=2){ return 1; }else{ return sum(&b)+sum(&c); } } int mai 阅读全文
posted @ 2023-10-29 09:51 爱吃泡面的皮卡 阅读(5) 评论(0) 推荐(0) 编辑
摘要: //地址 #include <bits/stdc++.h> using namespace std; int sum(int &a){ int b,c; b=a-1; c=a-2; if(a<=2){ return 1; }else{ return sum(b)+sum(c); } } int ma 阅读全文
posted @ 2023-10-29 09:49 爱吃泡面的皮卡 阅读(2) 评论(0) 推荐(0) 编辑
摘要: //按值 #include <bits/stdc++.h> using namespace std; int sum(int a){ if(a<=2){ return 1; }else{ return sum(a-1)+sum(a-2); } } int main(){ int x,c,d; cin 阅读全文
posted @ 2023-10-29 09:47 爱吃泡面的皮卡 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页