柠檬试题库
search
首页
计算机
公务员
驾照
关于
15
有下列命令按钮控件test的单击事件过程: Private Sub test_click() Dim I,R R=0 For I=1 To 5 Step 1 R=R+I Next I bResult.Caption=Str(R) End Sub 当运行窗体,单击命令按钮时,在名为bResult的窗体标签内将显示的是( )。
执行下列程序段后,输出结果是 n = 0 For i=1 To 3 For j=5 To 1 Step -1 n = n + 1 Next j, i Debug.Print n; j; i
有以下程序 #include
struct tt { int x; struct tt *y; } *p; struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a}; main() { int i; p=a; for(i=1; i<=2; i++) { printf("%d,", p->x ); p=p->y; } } 程序的运行结果是
有以下程序 #include
int fun( int n ) { int a; if( n==1 ) return 1; a = n + fun( n-1 ); return ( a ); } main() { printf( "%d\n", fun( 5 ) ); } 程序的输出结果是
有以下程序 #include
main() { int c,d; c = 10 | 5; d = 10 + 5; printf("%d,%d\n", c, d); } 程序的运行结果是
工程文件中包含一个模块文件和一个窗体文件。模块文件的程序代码是:Public x As IntegerPrivate y As Integer窗体文件的程序代码是:Dim a As IntegerPrivate Sub Form_Load() Dim b As Integer a=2:b=3:x=10:y=20End SubPrivate Sub Command1_Click() a=a+5:b=b+5:x=x+5:y=y+5 Print a; b; x; y End Sub运行程序,单击窗体上的命令按钮,则在窗体上显示的是( )。
阅读程序:Private Sub Form_Click() a=0 For j=1 To 15 a=a+j Mod 3 Next j Print aEnd Sub程序运行后,单击窗体,输出结果是( )。
随机标签
form
角色
都有
成绩单
135