上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: 快捷命令 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-04-06 08:09 fushuxuan1 阅读(50) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int a[]={7,4,8,9,2,6}; for(int i=1;i<6;i++){ for(int j=i;j>0;j--){ if(a[j]<a[j-1]){ swap(a[j 阅读全文
posted @ 2024-04-05 09:40 fushuxuan1 阅读(11) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; //基本思想:从数组的未排序区域选出一个最小的元素, //把它与数组中的第一个元素交换位置; //然后在从剩下的未排序区域中选出一个最小的元素 //把它与数组中的第二个元素交换位置。 //重复上述过程,直到数 阅读全文
posted @ 2024-04-05 08:53 fushuxuan1 阅读(14) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int a[]={7,4,8,9,2}; for(int i=0;i<5;i++){ for(int j=i+1;j<5;j++){ if(a[i]>a[j]){ swap(a[i], 阅读全文
posted @ 2024-04-05 08:30 fushuxuan1 阅读(12) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ string n; int i; cin>>n; freopen("in.txt","w",stdout); cout<<n; freopen("in.txt","r",stdin); 阅读全文
posted @ 2024-03-30 09:58 fushuxuan1 阅读(20) 评论(0) 推荐(0)
摘要: int count=0; for (int k=0;k<100;k++){ count++; } cout<<cunt; //程序执行次数:100 //时间复杂度:O(1) int count=0; for(int k=0;k<2*N;k++){ count++; } int M=10; while 阅读全文
posted @ 2024-03-30 08:11 fushuxuan1 阅读(18) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> #include <windows.h> using namespace std; struct book{ string name; float money; string cbs; string writer; int kc; string ty 阅读全文
posted @ 2024-03-17 10:00 fushuxuan1 阅读(25) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; struct book{ string name; float money; string cbs; string writer; int kc; string id; }; int main(){ whil 阅读全文
posted @ 2024-03-16 10:01 fushuxuan1 阅读(19) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ char n; for(int i=1;i<=10;i++){ n='A'; for(int j=1;j<i;++j){ cout<<" "; } for(int k=1;k<=19; 阅读全文
posted @ 2024-03-15 20:11 fushuxuan1 阅读(34) 评论(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-03-03 10:01 fushuxuan1 阅读(112) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页