
资源包
文章平均质量分 56
欲弥
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
汇编炮弹弹道计算实验
文章目录一、先使用c语言编写二、翻译为汇编语言 一、先使用c语言编写 #include<stdio.h> #include<math.h> //最高高度和最远记录 float getsin(float x){ float sum,a,b; //sum代表和,a为分子,b为分母 char s; s=1; sum=0; a=x; //分子赋初值 b=1; //分母赋初值 for(int i=1;a/b>=1e-6;i++) ..原创 2021-06-17 10:04:31 · 1384 阅读 · 0 评论 -
添加汇编缺少的INCLUDE floatio.inc头文件
文章目录一、下载汇编INCLUDE floatio.inc包二、使用步骤 一、下载汇编INCLUDE floatio.inc包 点击获得汇编INCLUDE floatio.inc包https://pan.baidu.com/s/1LwgwDWNcJ82q0ByyBwUzCw 提取码 :cyy6 二、使用步骤 将floatio.inc放入 Masm615/INCLUDE 目录下 将floatio.obj放入 Masm615/LIB 目录下 进入 Masm615/make32.bat , 点开编辑将flo原创 2021-06-08 21:56:38 · 734 阅读 · 0 评论