已阅读5页,还剩22页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
一 选择题 共20分 每小题1分 1 以下方法不能打开代码窗口的操作是 a 双击窗体上的对象b 双击工程资源管理窗口中的窗体文件图标c 单击工程资源管理窗口中 查看代码 按钮d 执行 视图 菜单中的 代码窗口 命令2 以下四组标识符 命名正确的一组是 a nameinttest5my carb bikeyear sinamoneyc strhellointegertop d cap6yuanmyname buy3 如果要让文本框可以输入或显示多行文本 需要将文本框的 属性值设置为true a textb multilinec scrollbarsd enabled4 要强制显示声明变量 可在窗体模块或标准模块的声明中加入语句 a optionbase0b optionexplicitc optionbase1c optioncompare b a b b 5 表达式100 100 100的值是 a 300b 200100c 100100100d 1002006 算术表达式 sin x a bc de 的vb表达式是 a sin x a b c deb sin x a b c d ec sin x a b c d e d sin x a b c d e 7 下列语句的输出结果是 dimsumasintegersum 12 56printsuma 12 56b 12c 报错d 13 b c d 8 下列表达式可以判断变量str为大写字母字符的是 a a str zb a str z c a str z d a strandstr z 9 下列程序执行后 x的值是 dimxasintegerx 2selectcasexcase0to3x x 1caseis 3x x 2case2x x 3endselecta 2b 3c 4d 5 d b 10 下列程序的执行结果为 dimiasintegerfori 10to20step2i i 3nextiprintia 21b 23c 25d 2711 下列程序的执行结果是 dimaasinteger basintegera 0b 3whilea 10a a bwendprinta ba 123b abc 93d 124 c a 12 定义静态数组时 其下标允许是 a 变量b 常量c 算术表达式 可含变量 d 常量 变量 算术表达式 可含变量 13 下列程序的执行结果是 dimx 5 asintegerdimiasintegerfori 1to5x i i inextiprintx 5 a 0b 5c 16d 25 b d 14 下列程序的执行结果是 dimx 3 5 asintegerdimiasinteger jasintegerfori 1to3forj 1to5x i j i jnextjnextiprintx 3 4 6b 8c 10d 1215 下列关于函数过程的叙述正确的是 a 函数名只能被赋值一次b 函数名没有赋值 也有值被返回c 函数名可以不遵循变量的命名规则d 定义函数的类型是指定义形参的类型 d b 16 如果要设置timer控件的时间间隔为0 5秒 那么需要设置interval属性值等于 a 5000b 500c 50d 517 在属性窗口中输入组合框控件的列表项时 使用 键换行 a enterb alt enterc ctrl enterd shift enter18 下列语句可用于设置复选框check1控件为选中状态的语句是 a check1 value trueb check1 value falsec check1 value 0d check1 value 1 b c d 19 当单击滚动条控件右侧的按钮一次 滚动块移动一定的刻度值 决定此刻度值的属性是 a maxb minc smallchanged largechange20 下列程序的执行结果为 dimxasinteger yasintegerdimiasintegerx 0fori 1to3fory 1toix x ynextynextiprintx ya 184b 183c 103d 104 c d 二 填空题 共10分 每小题1分 1 以下程序用于判断输入的年份是否是闰年 请将程序补充完全 privatesubcommand1 click dimyasintegery val inputbox 请输入年份 if thenprinty 年为闰年 elseprinty 年不是闰年 endifendsub ymod4 0andymod1000 or ymod400 0 2 程序代码如下 dimaasintegera 20ifa 5thenprint a 5 elseifa 10thenprint a 10 elseprint a aendif程序执行的结果为 a 5 3 以下程序用于计算1 1 2 1 3 直到最后一项小于0 00001 请将程序补充完全 dimnaslong sassinglen 1s 0while s s 1 nn n 1wend4 以下程序用于计算s 1 3 32 33 310的值 请将程序补充完全 dimsaslong tasinteger iasintegers 0t 1fori 0to10 s s tnexti 1 n 0 00001 t 3 i 5 程序代码如下 dima 10 asintegerdimiasintegerfori 1to10a i 2 inextifori 1to10printa i nexti程序执行的结果为 2468101214161820 6 以下程序用于对数组进行从小到大的排序 请将程序补充完全 dima 10 asintegerdimiasinteger jasinteger tasintegerfori 1to9forj 1to10 iif thent a j a j a j 1 a j 1 tendifnextjnexti a j a j 1 7 以下程序用于计算10行10列的二维数组的元素之和 请将程序补充完全 dima 10 10 asintegerdimiasinteger jasinteger sasintegers 0fori 1to10forj 1to10a i j i jnextjnextifori 1to10forj 1to10 nextjnexti s s a i j 8 程序代码如下 subfact byvalaasinteger byrefbasinteger a a 10b b 5endsubprivatesubcommand1 click dimxasinteger yasintegerx 10y 20factx yprintx yendsub单击command1后程序执行的结果为 1025 9 以下程序用于计算 n 1 2 m 请将程序补充完全 functionfact masinteger aslongdimiasintegerdimtaslong saslongs 0t 1fori 1tom s s tnextifact sendfunction m n 1 t t i 10 程序代码如下 dimiasinteger jasinteger kasintegerk 0fori 0to10step3ifi 8thenexitforforj 1to3k k 1nextjnextiprint k k程序执行的结果为 k 9 privatesubcommand1 click dimaasinteger basinteger casintegera val text1 text b val text2 text c a btext3 text str c endsub privatesubcommand1 click dimrasinteger hasintegerdimvassingler val text1 text h val text2 text v 3 14 r r htext3 text str v endsub privatesubcommand1 click dimxasinteger yasintegerx val text1 text ifx 10andx 20theny x 2 1elsey 3 x 3endiftext2 text str y endsub privatesubcommand1 click dimmasintegerm val inputbox 输入m的值 ifmmod3 2andmmod5 3thenprint 满足条件 elseprint 不满足条件 endifendsub privatesubcommand1 click dimxasinteger saslongdimnasintegern val inputbox 输入n的值 s 0forx 1tons s x x x x 3 x x x 2 x x 1nextxprint s sendsub privatesubcommand1 click dimnasintegerdimaasinteger basinteger casintegerforn 100to999a n 100b nmod100 10c nmod10ifa b c 5thenprintnendifnextnendsub privatesubcommand1 click dima 100 asintegerdimiasinteger sasintegerrandomize time fori 1to100a i int rnd 10 nextifori 1to100text1 text text1 text a i nextis 0fori 1to100s s a i nextitext2 text str s endsub privatesubcommand1 click dima 5 5 asinteger iasinteger jasinteger maxasintegerrandomize time fori 1to5forj 1to5a i j int rnd 10 nextjnextifori 1to5forj 1to5text1 text text1 text a i j nextjtext1 text text1 text vbcrlfnextimax a 1 1 fori 1to5forj 1to5ifmax a i j thenmax a i j endifnextjnextitext2 text str max endsub functionfact xasinteger aslongdimsaslongs 2 x x 3 x 1fact sendfunctionprivatesubcommand1 click dimxasintegerdimsasintegerx val text1 text s fact x text2 text str s endsub 10 编写sub过程 对包
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 厚街体育馆施工组织设计
- 欧式古典客厅布艺软装设计
- 利用机器学习优化网络数据监管
- 焊接作业质量检验与问题处理流程
- 高一化学教案:专题第一单元第三课时乙烯
- 三明市2024-2025学年第一学期高三期末数学质检主观题阅卷情况和教学建议
- 2024高中地理第四章工业地域的形成与发展章末总结提升练含解析新人教版必修2
- 2024高中生物第6章生态环境的保护第2节保护我们共同的家园课堂演练含解析新人教版必修3
- 2024高考地理一轮复习第五部分选修地理-重在迁移第42讲旅游地理课时作业含解析新人教版
- 2024高考化学一轮复习第十一章有机化学基础第一讲认识有机化合物规范演练含解析新人教版
- 《病历书写基本规范》课件
- 《非计划性拔管》课件
- 护理不良事件定义、分类及分级
- GB/T 2881-2023工业硅
- 经理年终工作总结述职报告ppt模板
- 临时用电拆除方案
- 诗经研究课程教学大纲
- 垂体瘤诊疗规范内科学诊疗规范诊疗指南2023版
- 三年级道德与法治教学工作总结
- 托卡马克等离子体约束
- 各级各类护理人员岗位职责
评论
0/150
提交评论