填空题

需求分析的最终结果是产生______。

【参考答案】

需求规格说明书
<上一题 目录 下一题>
热门 试题

单项选择题
下列程序的执行结果为 Private Sub Command1_Click() Dim FirStr As String FtrSt= abcdef Print Pat(FirStr) End Sub Private Function Pat(xStr As String)As String Dim tempStr As String,strLen As Integer tempStr= strLen=Len(xStr) i=1 Do While i<=Len(xStr)-3 tempStr=tempStr+Mid(xStr,i,1)+Mid(xStr,strLen -i+1,1) i=i+1 Loop Pat=tempStr End Function
A.abcdef
B.afbecd
C.fedcba
D.defabc
单项选择题
窗体上有Text1、Text2两个文本框及一个命令按钮Command1,编写下列程序: Dim y As Integer Private Sub Command1_Click() Dim x As Integer x=2 Text1.Text=Fun2(Funl(x),y) Text2.Text=Fun1(x) End Sub Private Function Fun1(x As Integer)As Integer x=x+y y=x+y Fun1=x+y End Function Private Function Fun2(x As Integer,y As Integer)As Integer Fun2=2*x+y End Function 当单击1次和单击2次命令按钮后,文本框Text1和Text2内的值分别是
A.2 4 2 4
B.2 4 4 8
C.10 10 58 58
D.4 4 8 8
相关试题
  • a(i) mod 5
  • (Rnd*99)+1
  • 47
  • 能够将文本框控件隐藏起来的属性是____...
  • 下列程序的功能是:将数据1,2,…,10...