上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页
摘要: #include <bits/stdc++.h> #include "minecraft.h" #include <Windows.h> using namespace std; TxMinecraft mc; int main() { bool con = mc.ConnectMinecraft( 阅读全文
posted @ 2024-03-08 20:06 王一行(小号) 阅读(19) 评论(0) 推荐(0)
摘要: #include <iostream> #include "minecraft.h" using namespace std; TxMinecraft mc; void set1(int x,int y,int z,int data){ mc.drawLine(x+1+1,y,z,x+2+1,y,z 阅读全文
posted @ 2024-03-01 19:58 王一行(小号) 阅读(15) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); char x; int a,a1,s1 = s.size(); bool have = true; for(int i = 0;i< 阅读全文
posted @ 2024-02-20 21:47 王一行(小号) 阅读(23) 评论(0) 推荐(0)
摘要: 主函数 #include <bits/stdc++.h> #include "Sort.h" using namespace std; int main(){ int n; cin>>n; Sort.N = n; Sort.Cin(); Sort.Cout(); return 0; } 副函数 cl 阅读全文
posted @ 2024-01-28 11:18 王一行(小号) 阅读(18) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2024-01-27 09:24 王一行(小号) 阅读(31) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main(){ int n; cin>>n; int y = 0,y1 = 0; while(n){ y++; if((n-1)%3==0 && y1==0){ y1 = y; } if(n%3==0){ n 阅读全文
posted @ 2024-01-21 08:54 王一行(小号) 阅读(29) 评论(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:13 王一行(小号) 阅读(35) 评论(0) 推荐(0)
摘要: 1. #include <iostream> #include <list> using namespace std; int main(){ list<int> a = {1,2,3}; list<int> b = {4,5,6}; list<int>::iterator i,j; j = a.e 阅读全文
posted @ 2023-12-31 09:54 王一行(小号) 阅读(16) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int x[] = {2,3,4,5,6,7}; deque<int> a(x,x+sizeof(x)/sizeof(int)); cout<<"初始值:"; for(int i = 阅读全文
posted @ 2023-12-31 08:50 王一行(小号) 阅读(18) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; void MAIN(); int main(){ int n; while(1){ MAIN(); cin>>n; char time[10],cata[50],a,b; switch(n){ case 1: 阅读全文
posted @ 2023-12-30 09:11 王一行(小号) 阅读(24) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页