登录窗体如图所示。单击"登录"按钮,当用户名及密码正确时则会弹出窗口显示"OK"信息。
下列过程不能完成此功能的是
- A.Private Sub cmdOK_Click()
If txtUser.Value = "zhangs" And txtPW.Value = "123" Then MsgBox "OK"
End if
End Sub
- B.Private Sub cmdOK_Click()
If txtUser.Value = "zhangs" Then
If txtPW.Value = "123" Then
MsgBox "OK"
End if
End if
End Sub
- C.Private Sub cmdOK_Click()
If txtUser.Value = "zhangs" Then
If txtPW.Value = "123" Then MsgBox "OK"
End if
End Sub
- D.Private Sub cmdOK_Click()
If txtUser.Value = "zhangs" and txtPW.Value = "123" Then
MsgBox "OK"
End If
End Sub
热度🔥433
解析:打开微信小程序查看本题解析
目前使用的硬磁盘,在其读/写寻址过程中()。
若有定义:double a=22;int i=0,k=18;,则不符合C语言规定的赋值语句是( )
有以下程序
#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; ix ); p=p->y; }
}
程序的运行结果是
若有以下程序
#include
main()
{ int i, j=0;
char a[]="How are you!", b[10];
for ( i=0; a[i]; i++ )
if (a[i] == ' ') b[j++]=a[i+1];
b[j]='\0';
printf("%s\n",b);
}
则程序的输出结果是
某系统总体结构如下图所示该系统结构图的最大扇出数是( )。