




已阅读5页,还剩14页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1 可视化编程技术课程设计可视化编程技术课程设计 报告报告 班级 网络 C142 学号 139070 姓名 武云瑞 题目题目 仿照仿照 WindowsWindows 系统计算器设计计算器系统计算器设计计算器 1 1 引言引言 计算器的产生和发展是建立在电子计算机基础之上的 现代社会很需要一个健全 高效率的 计算器 为了提高自己的实践能力和将来开发一个更实用更全能更智能的计算器 以设计与 实现计算器为课题 此次设计的计算器应用软件从 visual studio 2012 编程环境中开发 是一 个简单的窗体应用程序 实现简单的计算器功能 以微软自带的计算器为模板 设计了简单 易懂的计算器 这款计算器不仅实现了简单的四则运算的功能 还可以进行复杂数学运算 和进制转换 十进制转二进制 八进制 十六进制 具有简洁的外观 即时准确的获得所需 要要计算的结果 充分降低了数字计算器的难度和所需要的时间 对人们生活和学习具有有 很大的帮助 2 2 系统设计系统设计 1 1 功能设计 功能设计 本计算器由四大模块 分别为 1 标准计算器 即为主窗口 2 科学型计算器 3 程序员计算器 进制转换 4 开发者介绍 2 2 界面设计 界面设计 主窗口界面 from1 2 科学型计算器界面 from2 程序员界面 from3 3 开发者介绍 from4 2 2 程序实现程序实现 1 1 文本框的设置 文本框的设置 textBox1textBox1 TextText 0 0 窗口启动前窗口启动前 Form1Form1 x x 0 0 point 1 point 1 nopoint nopoint 0 0 Form1Form1 a a 0 0 1 1 2 2 3 3 4 4 Form1Form1 b b 0 0 判判D D断断 是否执行过运算执行过运算是否执行过运算执行过运算 Form1Form1 shu1 shu1 0 0 Form1Form1 shu2 shu2 0 0 Form1Form1 result result 0 0 2 2 按键的设置 按键的设置 数字键及小数点 数字键及小数点 publicpublic staticstatic voidvoid numbernumber objectobject sendersender TextBoxTextBox textBox1textBox1 ButtonButton btnbtn ButtonButton sendersender ifif btnbtn NameName one one ifif x x 1 1 判断有小数点判断有小数点 4 textBox1textBox1 TextText textBox1textBox1 TextText 1 1 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 1 1 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 1 1 ToStringToString ifif btnbtn NameName two two ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 2 2 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 2 2 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 2 2 ToStringToString ifif btnbtn NameName three three ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 3 3 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 3 3 5 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 3 3 ToStringToString ifif btnbtn NameName four four ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 4 4 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 4 4 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 4 4 ToStringToString ifif btnbtn NameName five five ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 5 5 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 5 5 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 5 5 ToStringToString ifif btnbtn NameName six six ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 6 6 returnreturn ifif b b 0 0 6 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 6 6 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 6 6 ToStringToString ifif btnbtn NameName seven seven ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 7 7 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 7 7 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 7 7 ToStringToString ifif btnbtn NameName eight eight ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 8 8 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 8 8 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 8 8 ToStringToString ifif btnbtn NameName nine nine 7 ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 9 9 returnreturn ifif b b 0 0 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 9 9 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 9 9 ToStringToString ifif btnbtn NameName zero zero ifif x x 1 1 判断有无小数点判断有无小数点 textBox1textBox1 TextText textBox1textBox1 TextText 0 0 returnreturn ifif b b 0 0 两个数的界限判断两个数的界限判断 textBox1textBox1 TextText 0 0 b b 0 0 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 textBox1textBox1 TextText 0 0 elseelse textBox1textBox1 TextText textBox1textBox1 TextText 0 0 ToStringToString publicpublic voidvoid one Clickone Click objectobject sendersender EventArgsEventArgs e e numbernumber sendersender textBox1textBox1 publicpublic voidvoid Form1 LoadForm1 Load objectobject sendersender EventArgsEventArgs e e textBox1textBox1 TextText 0 0 publicpublic staticstatic voidvoid pointpoint objectobject sendersender TextBoxTextBox textBox1textBox1 ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 x x 1 1 8 textBox1textBox1 TextText textBox1textBox1 TextText ToStringToString publicpublic voidvoid xiaoshudian Clickxiaoshudian Click objectobject sendersender EventArgsEventArgs e e pointpoint sendersender textBox1textBox1 运算符号运算符号1 1 加减乘除 退格 清零 加减乘除 退格 清零 publicpublic staticstatic voidvoid fuhao2fuhao2 objectobject sendersender TextBoxTextBox textBox1textBox1 ButtonButton btnnbtnn ButtonButton sendersender ifif btnnbtnn NameName baifenbi baifenbi textBox1textBox1 TextText doubledouble ParseParse textBox1textBox1 TextText 100 100 ToStringToString ifif btnnbtnn NameName genhao genhao textBox1textBox1 TextText MathMath SqrtSqrt doubledouble ParseParse textBox1textBox1 TextText ToStringToString ifif btnnbtnn NameName daoshu daoshu ifif doubledouble ParseParse textBox1textBox1 TextText 0 0 MessageBoxMessageBox ShowShow 零没有倒数 零没有倒数 elseelse textBox1textBox1 TextText 1 1 doubledouble ParseParse textBox1textBox1 TextText ToStringToString publicpublic voidvoid baifenbi Clickbaifenbi Click objectobject sendersender EventArgsEventArgs e e fuhao2fuhao2 sendersender textBox1textBox1 publicpublic voidvoid 撤撤 销销 Click Click objectobject sendersender EventArgsEventArgs e e textBox1textBox1 TextText textBox1textBox1 TextText RemoveRemove textBox1textBox1 TextText LengthLength 1 1 publicpublic voidvoid C C清零清零ClickClick objectobject sendersender EventArgsEventArgs e e textBox1textBox1 ClearClear publicpublic staticstatic voidvoid fuhaofuhao objectobject sendersender TextBoxTextBox textBox1textBox1 ButtonButton btbt ButtonButton sendersender ifif btbt NameName add add x x 0 0 shu1shu1 doubledouble ParseParse textBox1textBox1 TextText a a 1 1 b b 1 1 9 ifif btbt NameName subtract subtract x x 0 0 shu1shu1 doubledouble ParseParse textBox1textBox1 TextText a a 2 2 b b 2 2 ifif btbt NameName multiply multiply x x 0 0 shu1shu1 doubledouble ParseParse textBox1textBox1 TextText a a 3 3 b b 3 3 ifif btbt NameName 除除y y以以 x x 0 0 shu1shu1 doubledouble ParseParse textBox1textBox1 TextText a a 4 4 b b 4 4 publicpublic voidvoid add Clickadd Click objectobject sendersender EventArgsEventArgs e e fuhaofuhao sendersender textBox1textBox1 publicpublic staticstatic voidvoid dengyudengyu objectobject sendersender TextBoxTextBox textBox1textBox1 shu2shu2 doubledouble ParseParse textBox1textBox1 TextText ifif a a 1 1 resultresult shu1shu1 shu2shu2 textBox1textBox1 TextText resultresult ifif a a 2 2 resultresult shu1shu1 shu2shu2 textBox1textBox1 TextText resultresult ifif a a 3 3 resultresult shu1shu1 shu2shu2 textBox1textBox1 TextText resultresult 10 ifif a a 4 4 resultresult shu1shu1 shu2shu2 textBox1textBox1 TextText resultresult publicpublic voidvoid jieguo Clickjieguo Click objectobject sendersender EventArgsEventArgs e e dengyudengyu sendersender textBox1textBox1 运算符 科号运算符 科号2 2学型计算器中所用符号 学型计算器中所用符号 privateprivate voidvoid one Clickone Click objectobject sendersender EventArgsEventArgs e e Form1Form1 number number sendersender textBox1textBox1 privateprivate voidvoid add Clickadd Click objectobject sendersender EventArgsEventArgs e e Form1Form1 fuhao fuhao sendersender textBox1textBox1 privateprivate voidvoid jieguo Clickjieguo Click objectobject sendersender EventArgsEventArgs e e Form1Form1 dengyu dengyu sendersender textBox1textBox1 ifif Form1Form1 a a 4 4 sin sin textBox1textBox1 TextText MathMath SinSin Form1Form1 shu1 shu1 MathMath PIPI 180 180 ToStringToString ifif Form1Form1 a a 5 5 cos cos textBox1textBox1 TextText MathMath CosCos Form1Form1 shu1 shu1 MathMath PIPI 180 180 ToStringToString ifif Form1Form1 a a 6 6 tan tan textBox1textBox1 TextText MathMath TanTan Form1Form1 shu1 shu1 MathMath PIPI 180 180 ToStringToString ifif Form1Form1 a a 7 7 n n doubledouble n n 1 1 forfor doubledouble i i Form1Form1 a a i i 0 0 i i n n n n i i textBox1textBox1 TextText n n ToStringToString ifif Form1Form1 a a 8 8 pai pai 11 textBox1textBox1 TextText MathMath PIPI ToStringToString ifif Form1Form1 a a 9 9 x 2 x 2 textBox1textBox1 TextText MathMath PowPow doubledouble ParseParse textBox1textBox1 TextText 2 2 ToStringToString ifif Form1Form1 a a 10 10 x 3 x 3 textBox1textBox1 TextText MathMath PowPow doubledouble ParseParse textBox1textBox1 TextText 3 3 ToStringToString ifif Form1Form1 a a 11 11 次方次方 textBox1textBox1 TextText MathMath PowPow Form1Form1 shu1 shu1 Form1Form1 shu2 shu2 ToStringToString textBox1textBox1 TextText Form1Form1 result result ifif Form1Form1 a a 12 12 10 x 10 x textBox1textBox1 TextText MathMath PowPow 10 10 doubledouble ParseParse textBox1textBox1 TextText ToStringToString ifif Form1Form1 a a 13 13 3 x 3 x textBox1textBox1 TextText MathMath PowPow doubledouble ParseParse textBox1textBox1 TextText 1 01 0 3 0 3 0 ToStringToString ifif Form1 Form1 a a 14 y x 14 y x textBox1 textBox1 Text Text if if Form1 Form1 a a 15 ln 15 ln textBox1 textBox1 Text Text Math Math ifif Form1Form1 a a 16 16 log log textBox1textBox1 TextText MathMath LogLog doubledouble ParseParse textBox1textBox1 TextText doubledouble ParseParse textBox1textBox1 TextText ToStringToString ifif Form1 Form1 a a 17 e 17 e textBox1 textBox1 Text Text Math E Math E privateprivate voidvoid xiaoshudian Clickxiaoshudian Click objectobject sendersender EventArgsEventArgs e e 12 Form1Form1 point point sendersender textBox1textBox1 privateprivate voidvoid 倒数倒数 Click Click objectobject sendersender EventArgsEventArgs e e Form1Form1 fuhao2 fuhao2 sendersender textBox1textBox1 privateprivate voidvoid 撤消撤消 Click Click objectobject sendersender EventArgsEventArgs e e textBox1textBox1 TextText textBox1textBox1 TextText RemoveRemove textBox1textBox1 TextText LengthLength 1 1 privateprivate voidvoid 清零清零 Click Click objectobject sendersender EventArgsEventArgs e e textBox1textBox1 ClearClear privateprivate voidvoid 正弦正弦 Click Click objectobject sendersender EventArgsEventArgs e e ButtonButton btnbtn ButtonButton sendersender ifif btnbtn NameName 正弦正弦 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 4 4 表示表示sinsin 计算计算 Form1Form1 b b 4 4 ifif btnbtn NameName 余弦余弦 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 5 5 cos cos计算计算 Form1Form1 b b 5 5 ifif btnbtn NameName 正切正切 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 6 6 表示表示tantan 计算计算 Form1Form1 b b 6 6 ifif btnbtn NameName 阶乘阶乘 Form1Form1 x x 0 0 13 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 7 7 表示表示n n Form1Form1 b b 7 7 ifif btnbtn NameName pai pai Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 8 8 表示表示 Form1Form1 b b 8 8 ifif btnbtn NameName 平方平方 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 9 9 表示表示x 2x 2 Form1Form1 b b 9 9 ifif btnbtn NameName 三次方三次方 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 10 10 表示表示x 3x 3 Form1Form1 b b 10 10 ifif btnbtn NameName 次方次方 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 11 11 表示表示x yx y Form1Form1 b b 11 11 ifif btnbtn NameName 十的次方十的次方 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 12 12 表表 示示 10 x 10 x Form1Form1 b b 12 12 ifif btnbtn NameName 开三次方开三次方 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 13 13 表示表示x 3x 3 Form1Form1 b b 13 13 14 ifif btnbtn NameName 开方开方 Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 14 14 表示表示 Form1Form1 b b 14 14 ifif btnbtn NameName ln ln Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 15 15 表示表示lnln Form1Form1 b b 15 15 ifif btnbtn NameName log log Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 16 16 表示表示lnln Form1Form1 b b 16 16 ifif btnbtn NameName e e Form1Form1 x x 0 0 Form1Form1 shu1 shu1 doubledouble ParseParse textBox1textBox1 TextText Form1Form1 a a 17 17 表示表示lnln Form1Form1 b b 17 17 运算符号运算符号3 3 程序员型 程序员型 privateprivate voidvoid one Clickone Click objectobject sendersender EventArgsEventArgs e e Form1Form1 number number sendersender textBox1textBox1 privateprivate voidvoid add Clickadd Click objectobject sendersender EventArgsEventArgs e e Form1Form1 fuhao fuhao sendersender textBox1textBox1 privateprivate voidvoid jieguo Clickjieguo Click objectobject sendersender EventArgsEventArgs e e 15 Form1Form1 dengyu dengyu sendersender textBox1textBox1 privateprivate voidvoid xiaoshudian Clickxiaoshudian Click objectobject sendersender EventArgsEventArgs e e Form1Form1 point point sendersender textBox1textBox1 privateprivate voidvoid 倒数倒数 Click Click objectobject sendersender EventArgsEventArgs e e Form1Form1 fuhao2 fuhao2 sendersender textBox1textBox1 privateprivate voidvoid 撤销撤销 Click Click objectobject sendersender EventArgsEventArgs e e textBox1textBox1 TextText textBox1textBox1 TextText RemoveRemove textBox1textBox1 TextText LengthLength 1 1 privateprivate voidvoid 清零清零 Click Click objectobject sendersender EventArgsEventArgs e e textBox1textBox1 ClearClear privateprivate voidvoid rara八八 CheckedChanged CheckedChanged objectobject sendersender EventArgsEventArgs e e ifif textBox1textBox1 TextText intint d1d1 stringstring d2d2 stringstring wbwb textBox1textBox1 TextText stringstring s1s1 wbwb SubstringSubstring 0 0 ifif thisthis ra ra十十 CheckedChecked 8 8进制转换进制转换1010进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 10 10 textBox1textBox1 TextText d2d2 ToStringToString elseelse ifif thisthis ra ra十六十六 CheckedChecked 8 8进制转换进制转换 6 6进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 16 16 textBox1textBox1 TextText d2d2 ToStringToString 16 elseelse ifif thisthis ra ra二二t t CheckedChecked 8 8进制转换进制转换2 2进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 2 2 textBox1textBox1 TextText d2d2 ToStringToString privateprivate voidvoid rara十十 CheckedChanged CheckedChanged objectobject sendersender EventArgsEventArgs e e ifif textBox1textBox1 TextText intint d1d1 stringstring d2d2 stringstring wbwb textBox1textBox1 TextText stringstring s1s1 wbwb SubstringSubstring 0 0 ifif thisthis ra ra十六十六 CheckedChecked 十进制转换十六进制十进制转换十六进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 16 16 textBox1textBox1 TextText d2d2 ToStringToString elseelse ifif thisthis ra ra八八 CheckedChecked 十进制转换十进制转换8 8进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 8 8 textBox1textBox1 TextText d2d2 ToStringToString elseelse ifif thisthis ra ra二二 CheckedChecked 十进制转换十六进制十进制转换十六进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 2 2 textBox1textBox1 TextText d2d2 ToStringToString privateprivate voidvoid rara十六十六 CheckedChanged CheckedChanged objectobject sendersender EventArgsEventArgs e e ifif textBox1textBox1 TextText 17 intint d1d1 stringstring d2d2 d3d3 stringstring wbwb textBox1textBox1 TextText stringstring s1s1 wbwb SubstringSubstring 0 0 ifif thisthis ra ra十十 CheckedChecked 16 16进制转进制转1010进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 10 10 textBox1textBox1 TextText d2d2 ToStringToString elseelse ifif thisthis ra ra八八 CheckedChecked 16 16进制转换进制转换8 8进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 8 8 textBox1textBox1 TextText d2d2 ToStringToString elseelse ifif thisthis ra ra二二t t CheckedChecked 16 16进制转换进制转换2 2进制进制 doubledouble a a ConvertConvert ToDoubleToDouble s1s1 d1d1 intint a a d2d2 SystemSystem ConvertConvert ToStringToString d1d1 2 2 textBox1textBox1 TextText d2d2 ToStringToString privateprivate voidvoid rara二二t CheckedChanged t CheckedChanged objec
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- GB/T 41304.5-2025知识管理方法和工具第5部分:组织知识管理成熟度评估
- 平台稳性操作员理论知识考核试卷及答案
- 麻纤维开松参数调整工艺考核试卷及答案
- 农药制剂制剂抗性研究工艺考核试卷及答案
- 纺织染色工5S管理考核试卷及答案
- 木地板表面装饰工转正考核试卷及答案
- 职普融通、产教融合创新人才培养模式探索与实践
- 信息技术招教试题及答案
- 心脏解剖结构与传导系统知识测试卷
- 银行总行遴选面试题及答案
- 2025年时事政治考试100题及答案
- 农业产业强镇建设资金申请项目可行性研究及风险评估报告
- 2025年全国中小学校党组织书记网络培训示范班在线考试题库及答案
- 身边安全隐患课件
- 2025-2026学年苏教版(2024)小学科学三年级上册(全册)每课教学反思
- GB/T 46025-2025家用轮椅床
- 2025全国教育大会
- 小学国画教学课件
- 多彩贵州课件
- 计划生育技术服务诊疗常规和操作常规
- 数字音频原理及应用 第4版 课件全套 第1-11章 声学基础知识 -音频测量与分析
评论
0/150
提交评论