




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、实验aa1private sub command1_click() label3 = text1end suba2private sub form_load() timer1.interval = 0end subprivate sub command1_click() 自动 timer1.interval = 200end subprivate sub command2_click() 手动 timer1.interval = 0 call mymoveend subprivate sub timer1_timer() call mymoveend subsub mymove() label
2、1.move label1.left - 50 if label1.left 0 then label1.left = form1.widthend suba3private sub form_click() text1 = val(text1) + 1end subprivate sub form_load() text1 = 0end suba4private sub form_click() caption = 单击窗体,改变图片 picture = loadpicture(app.path + n_015.bmp) print 欢迎使用vbend subprivate sub form
3、_dblclick() cls caption = 双击窗体,卸去图片 picture = loadpicture() end subprivate sub form_load() caption = 装入窗体 picture = loadpicture(app.path + n_016.bmp) print 装入图end subprivate sub form_resize() 该事件的作用窗体始终与图一样大 caption = 窗体大小不变 form1.width = 260 * 16 260是tongji-2.bmp图的宽度,象素单位 form1.height = 260 * 16 +
4、200 260是图的高度,象素单位,200是窗体的标题栏高度end suba5sub command1_click() text1.fontname = 隶书 text1.fontsize = 25end subsub command2_click() text2.text = text1.seltext text2.fontname = text1.fontname text2.fontsize = text1.fontsizeend sub实验bb1private sub command1_click() text2 = format(5 / 9 * (val(text1) - 32),
5、0.00)end subprivate sub command2_click() text1 = format(9 / 5 * val(text2) + 32, 0.00)end sub或private sub command1_click() dim f!, c! 声明两个变量 f = val(text1) c = 5 / 9 * (f - 32) text2 = format(c, 0.00) 保留两位小数end subprivate sub command2_click() dim ff!, cc! 声明两个变量 cc = val(text2) ff = 9 / 5 * cc + 32
6、text1 = format(ff, 0.00) 保留两位小数end subb2private sub command1_click() label2 = format(val(text1) * val(text1) * 3.14, 0.00)end subprivate sub command2_click() label3 = format(val(text1) * 3.14 * 2, 0.00)end subprivate sub text1_lostfocus() if not isnumeric(text1.text) then msgbox 输入有非数字字符,请重新输入, , 警告
7、 text1.text = text1.setfocus end ifend sub或private sub command1_click() label2 = format(val(text1) * val(text1) * 3.14, 0.00)end subprivate sub command2_click() label3 = format(val(text1) * 3.14 * 2, 0.00)end subprivate sub text1_keypress(keyascii as integer) if keyascii = 13 then if not isnumeric(t
8、ext1.text) then text1.text = end if end ifend subb3private sub command1_click() n = int(log(2) / log(1.008) + 1) label1 = n & 年后人数超过26亿end subb4private sub command1_click() dim x, dx, cd x = text1.text dx = ucase(x) cd = len(x) print 大写字母为:; dx print 字符串长度为:; cdend subb5private sub command1_click()
9、text1 = int(rnd * 900 + 100)end subprivate sub command2_click() dim x%, x1%, x2%, x3% x = val(text1) x1 = x mod 10 分离出的个位数 x2 = (x mod 100) 10 分离出的十位数 x3 = x 100 分离出的百位数 label1 = x1 * 100 + x2 * 10 + x3end subb6private sub form_click() label1 = left(text1, 11) label2 = mid(text1, 12, 6) label3 = rig
10、ht(text1, 5)end subb7private sub command1_click() print for i = 1 to 5 print tab(15 - i * 2); string(2 * i - 1, ); spc(18 - 4 * (i - 1); string(2 * i - 1, ) next iend subprivate sub command2_click() clsend sub进一步要求:private sub command1_click() print for i = 1 to 5 print tab(15 - i * 2); string(2 * i
11、 - 1, ); string(10 - (2 * i - 1), ); string(2 * i - 1, ) next iend subprivate sub command2_click() clsend subb8private sub form_click()x = val(inputbox(输入一正实数, 计算, 0)pf = format(x * x, 0.000)pfg = format(sqr(x), 0.000)lf = format(x * x * x, 0.000)lfg = format(x (1 / 3), 0.000)print 平方为:; pf; space(5
12、); 平方根为:; pfg; space(5); 立方为:; lf; space(5); 立方根为:; lfgend sub实验cc1private sub form_click()dim x!, y!x = val(inputbox(输入x的值)if x 1000 theny = xelseif x 2000 theny = 0.9 * xelseif x 3000 theny = 0.8 * xelsey = 0.7 * xend ifprint yend subc2private sub form_click()dim x!, y!x = val(inputbox(输入上网时间)if x
13、 10 theny = 30elseif x 150 theny = 150end ifprint yend subc3private sub command1_click() dim x!, y!, z! x = inputbox(input x) y = inputbox(input y) z = inputbox(input z) print x y z print 排序前; x; ; y; ; z if x y then t = x: x = y: y = t if x z then t = x: x = z: z = t if y z then t = y: y = z: z = t
14、 print 排序后 & x & & y & & zend subprivate sub command2_click() dim x!, y!, z! x = inputbox(input x) y = inputbox(input y) z = inputbox(input z) print x y z print 排序前; x; ; y; ; z if x y then t = x: x = y: y = t if y z then t = y: y = z: z = t if x a(i + 1) thenz = a(i + 1)a(i + 1) = a(i)a(i) = zend i
15、fnext ipicture2.print a(0)picture2.print a(1)picture2.print a(2)end subc5private sub text2_lostfocus() dim m%, n%, y% m = val(text1) n = val(text2) if n mod 2 0 then msgbox (脚数必定为偶数) text2 = text2.setfocus else y = n / 2 - m if y 0 then text4 = format(-b + sqr(de) / t, 0.00) text5 = format(-b - sqr(
16、de) / t, 0.00)else text4 = format(-b / t, 0.00) & + & format(sqr(abs(de) / t, 0.00) & i text5 = format(-b / t, 0.00) & - & format(sqr(abs(de) / t, 0.00) & iend ifend subprivate sub command2_click()text1 = text2 = text3 = text4 = text5 = end subc7private sub text3_lostfocus() select case trim(text3)
17、case + text4 = val(text1) + val(text2) case - text4 = val(text1) - val(text2) case * text4 = val(text1) * val(text2) case / if val(text2) = 0 then msgbox 分母为零,重新输入 text2 = text2.setfocus else text4 = val(text1) / val(text2) end if end selectend subc8private sub text1_lostfocus() select case trim(tex
18、t1) case 1 text2 = monday case 2 text2 = tuesday case 3 text2 = wednesday case 4 text2 = thursday case 5 text2 = friday case 6 text2 = saturday case 7 text2 = sunday case is 7, is 7 or text1 1 then msgbox 数字为17,重新输入 text1 = text1.setfocuselse text2 = choose(text1, monday, tuesday, wednesday, thursda
19、y, friday, saturday, sunday)end ifend sub实验dd1private sub form_click() for i = 1 to 9 print tab(10 - i); string(2 * i - 1, trim(str(i) next iend subd2private sub form_click() for i = 1 to 10 step 1 print tab(i); string(20 - 2 * i), chr(64 + i) next iend subd3private sub command1_click()dim s!, t!, i
20、&s = 1t = 1for i = 1 to 100000t = t + is = s + 1 / tif 1 / t 0.00001 then exit fornext iprint for结构; s, i; 项end subd4private sub command1_click()dim n&, pi#, i&n = inputbox(输入n值)pi = 2for i = 1 to n pi = pi * (2 * i) / (2 * i - 1) * (2 * i) / (2 * i + 1)next iprint 当n= & n & 时,pi=; piend subd5privat
21、e sub form_click() dim s!, t!, i!, a%, n% a = int(rnd * 9 + 1) n = int(rnd * 6 + 5) t = 0: s = 0 print a=; a, n=; n for i = 1 to n t = t * 10 + a s = s + t print t; next i print print s=; send subd6private sub command1_click()dim s as integers = 0for i = 1 to 9 for j = 0 to 9 for k = 0 to 9 s = i *
22、100 + j * 10 + k if s = i 3 + j 3 + k 3 then print s end if next k next jnext iend subprivate sub command3_click()formd6.hidemain.showend subd7private sub command1_click() dim a!, x0!, x1! a = 27 x0 = 2 i = 0 do i = i + 1 x1 = 2 * x0 / 3 + a / (3 * x0 * x0) if abs(x1 - x0) max then max = a(i) if a(i
23、) min then min = a(i) avg = avg + a(i) next i avg = avg / 10 print print max=; max; min=; min; avg=; avgend sube2private sub form_click() dim a a = array(56, 78, 98, 88, 76, 78) for i = 0 to 5 print string(a(i) 5, ); a(i) print next iend sube3dim a%(19)private sub command1_click()picture1.cls for i
24、= 0 to 19 a(i) = int(rnd * 101) picture1.print a(i); ; if (i + 1) mod 4 = 0 then picture1.print next iend subprivate sub command2_click()picture2.clsdim s(5 to 9) for i = 0 to 19 k = a(i) 10 select case k case 0 to 5 s(5) = s(5) + 1 case 9 to 10 90100分的人数 s(9) = s(9) + 1 case 6 to 8 存放其他三个分数段的下标有规律,
25、根据k获得 s(k) = s(k) + 1 end selectnext i for i = 5 to 9 if s(i) 0 then picture2.print s(; i; )的人数有 ; format(s(i), 0); 个 next iend sube4private sub command1_click()picture1.clsdim d%(1 to 10)for i3 = 1 to 10randomized(i3) = int(rnd * 91 + 10)next i3for i = 1 to 10for j = 1 to 10 - iif d(j) = 5 then msg
26、box (超过5门课程,不能再选) exit sub else list2.additem list1.text list1.removeitem list1.listindex end ifend sube8sub combo1_keypress(keyascii as integer) select case keyascii case 48 to 57, 13 case else keyascii = 0 end select if keyascii = 13 then combo1.additem combo1.text combo1.text = end ifend subpriva
27、te sub command1_click() dim min%, max% min = val(combo1.list(0) max = val(combo1.list(0) imin = 0 imax = 0 for i = 1 to combo1.listcount - 1 if val(combo1.list(i) max then imax = i max = combo1.list(i) elseif val(combo1.list(i) min then imin = i min = combo1.list(i) end if next i t = combo1.list(0)
28、combo1.list(0) = combo1.list(imin) combo1.list(imin) = t t = combo1.list(combo1.listcount - 1) combo1.list(combo1.listcount - 1) = combo1.list(imax) combo1.list(imax) = tend sube9private sub form_click() for i = 0 to screen.fontcount - 1 if asc(left(screen.fonts(i), 1) = 5 then msgbox (输入人数超过数组声明的个数
29、)else with a(n) .number = text1 .name = text2 .salary = text3 picture1.print a(n).number, a(n).name, a(n).salary print end with n = n + 1 text1 = text2 = text3 = end ifend sub private sub command2_click()dim t as clerk, i%, j%for i = 0 to n - 1 for j = i to n - 1 if a(i).salary a(j + 1).salary then
30、t = a(i): a(i) = a(j + 1): a(j + 1) = t end if next jnext ipicture1.clspicture1.print 工号 姓名 工资for i = 0 to n - 1 picture1.print a(i).number, a(i).name, a(i).salary printnext iend sub实验ff1private sub form_click() dim a(1 to 10), amin, i% for i = 1 to 10 a(i) = -int(rnd * 101 + 300) print a(i); next i
31、 call s(a(), amin) print print min=; aminend subsub s(b(), min) dim i% min = b(lbound(b) for i = lbound(b) + 1 to ubound(b) if b(i) min then min = b(i) next iend subf2private sub command1_click() dim mm%, nn% mm = val(text1) nn = val(text2) picture1.print mm; tab(6); nn; tab(12); gcd(mm, nn)end subf
32、unction gcd%(byval m%, byval n%) if m n then t = m: m = n: n = t r = m mod n do while (r 0) m = n: n = r: r = m mod n loop gcd = nend functionf3dim x!private sub command1_click()print 调用标准函数sin的结果; sin(x)end subprivate sub command2_click()print 调用自定义函数 mysin的结果; mysin(x)end subfunction mysin(x!) as
33、double dim i%, t!, s! t = x s = t i = 1 do while abs(t) 0.00001 t = -1 * t * x * x / (i + 1) * (i + 2) s = s + t i = i + 2 loop mysin = send functionprivate sub command3_click()x = inputbox(输入要计算正弦函数的角度值x)x = x * 3.14 / 180end subf4private sub text1_keypress(keyascii as integer) if keyascii = 13 the
34、n if not isnumeric(text1) then msgbox 输入非数字串,重新输入 text1.text = text1.setfocus else if ish(text1) then picture1.print text1; else picture1.print text1 end if text1 = end if end ifend subfunction ish(ss as string) as boolean dim i%, ls% ish = true ss = trim(ss) ls = len(ss) for i = 1 to ls 2 if mid(ss
35、, i, 1) mid(ss, ls + 1 - i, 1) then ish = false exit function end if next iend functionf5function prime(byval m as integer) as booleanprime = truedim i%for i = 2 to m - 1if (m mod i) = 0 then prime = false: exit function 注意冒号和exit的范围next iend functionprivate sub command1_click()n = 0for i = 6 to 100
36、 step 2for j = 3 to i 2if prime(j) thenif prime(i - j) thenlist1.additem i & = & j & + & i - jn = n + 1end ifend ifnext jnext ipicture1.print 6和100之间共有; n; 对素数和end subf6dim a%()private sub form_click() print 1000以内的完数为: for i = 1 to 1000 if isws(i) then print i; =1; for j = 1 to ubound(a) print +; a
37、(j); next j print end if next iend subfunction isws(m) as boolean dim s% s = 0 for i = 1 to m 2 if m mod i = 0 then redim preserve a(j) a(j) = i j = j + 1 s = s + i end if next i if m = s then isws = trueend functionf7private sub delestr(s1 as string, byval s2 as string) dim i% ls2 = len(s2) i = ins
38、tr(s1, s2) do while i 0 s1 = left(s1, i - 1) + mid(s1, i + ls2) 在s1中去除s2子串 i = instr(s1, s2) loopend subprivate sub command1_click() 调用delestr子过程 dim ss1 as string ss1 = text1 call delestr(ss1, text2) text3 = ss1end subprivate sub command2_click()end subf8private sub command1_click()dim maxw$maxlen
39、text1 & , maxwtext2 = maxwend subsub maxlen(s$, maxw$) dim word$ maxw = do while s i = instr(s, ) word = left(s, i - 1) if len(word) len(maxw) then maxw = word s = mid(s, i + 1) loopend sub实验gg1private sub command1_click() list1.clear list1.additem combo1 if option1 then list1.additem pentium ii if option2 then list1.additem pent
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 汽车抵押借款合同范本
- 基础化学模拟练习题+参考答案
- 植物题库+答案
- 小学五年级数学上册口算能力竞赛测试题
- 小仓鼠作文指导课件
- 简易农业劳动者劳务合同
- 船运公司海上运输合同范本
- 2025年部编版道德与法治四年级下册第四单元复习课教案
- 二手设备买卖合同范本
- 药品管理经验分享
- 2025年华北电力大学辅导员及其他岗位招考聘用54人高频重点提升(共500题)附带答案详解
- 2022《信访工作条例》学习课件
- 尼康D3200中文说明书(完整版)
- 2025年高考政治一轮复习知识清单选择性必修一《当代国际政治与经济》重难点知识
- 儿童青少年肥胖食养指南(2024年版)
- 2023年高考真题-历史(辽宁卷) 含答案
- 2024年湖北省武汉市中考英语真题(含解析)
- 诺如病毒课件教学课件
- 2023年北京市初三二模数学试题汇编:新定义(第28题)
- 七年级下册道德与法治第二单元《焕发青春活力》测试卷、答案及解析
- 融资借款合同协议书范本(2024版)
评论
0/150
提交评论