以下程序的功能是从键盘输入若干个学生的考试成绩,统计并输出最高分和最低分,当输 入负数时结束输入,输出结果。请补充完整下列程序段。 dim x,amax,amin as single x=inputbox("enter a score") amax=x amin=x do while 【8】 if x>amax then amax=x end if if 【9】 then amin=x end if x=inputbox("enter a score") loop print"max=";amax,"min=";amin
链表适用于______查找。
要从表中物理删除一条记录,应使用命令______。
窗体上有list1、list2两个列表框,程序运行时,在两个列表框中分别选中1个项目,如图a所示,单击名称为command1的“交换”按钮,则把选中的项目互换,互换后的位置不限,如图b所示。下面的程序可实现这一功能,请填空。private sub command1_click()if list1.text=”” or list2.text=”” thenmsgbox”请选择交换的物品!”elselist1.additem list2.textlist2.removeitem( 11 )( 12 ) list1.removeitem list1.listindexend ifend sub
下列叙述中,错误的一条是______。
设一棵二叉树中有3个叶子结点,有8个度为1的结点,则该二叉树中总的结点数为()
在窗体上画两个组合框,其名称分别为combo1、comb02,然后画两个标签,名称分别为label1、label2,如图所示。程序运行后,如果在某个组合框中选择一个项目,则把所选中的项目在其下面的标签中显示出来。请填空。 privte sub combo1_click( ) call showltem(comb01.label1) end sub private sub combo2_click( )call showltem(combo2.labe12) end sub public sub showhem(tmpcombo as combobox,tmplabd as label), 【10】 caption= 【11】 .text end sub
下列事件过程:private sub command1_ click() msgbox str (123 123)end sub运行时,信息框中出现的结果是______。
下列程序的功能是求出所有的1~100之间的孪生素数。孪生素数是指两个素数的差为2,如3和5,11和13等,请填空。 private sub form_click() dim i as integer for i=3 to 97 step 2if 【14】 then print i,i 2end if next i end sub public function prime(byval n as integer)as boolean dim i as integer for i=2 to n-1 if 【15】 then exit for end if next i if i=n then prime=true else prime=false end if
在默认情况下,工具箱中只显示______控件。
设s="",表达式left(s,1) right(s,1) mid(s,3,2)的值为( )。
若按功能划分,软件测试的方法通常分为 【3】 测试方法和黑盒测试方法。
假定编写如下事件过程: private sub form_mousedown(button as integer,shift as integer,x as single,y as single) if(button and 3)=3 then print"hello" end if end sub 程序运行后,为了在窗体上输出“hello”,应该窗体上执行以下( )操作。
设有如下程序: private sub command1_click() dim sum as double, x as double sum=0 n=0 for i=1 to 5x=n/in=n 1sum=sum xnext end sub 该程序通过for循环计算一个表达式的值,这个表达式是______。