单项选择题

为了避免流程图在描述程序逻辑时的不灵活性,Nassi和Shneiderman提出了用方框图来代替传统的程序流程图,通常也把这种图称为

A.PAD图
B.N-S图
C.结构图
D.数据流图
<上一题 目录 下一题>
热门 试题

单项选择题
以下事件过程可以将打开对话框的标题改为“新时代”的是
A.Private Sub Command2_Click() CommonDialog1.DialogTitle="新时代" CommonDialog1.ShowOpen End Sub
B.Private SubCommand2_Click() CommonDialog1.DialogTitle="新时代" CommonDialog1.ShowFont End Sub
C.Private Sub Command2_Click() CommonDialog1.DialogTitle="新时代" CommonDialog1.Show End Sub
D.Private Sub Command2_Click() CommonDialog1.DialogTitle="新时代" CommonDialog1.ShowColor End Sub
单项选择题
函数过程Fun1的功能是:如果参数b为奇数,则返回值为1,否则返回值为0。Function Fun1(b As Integer) if ______ ThenFun1=0ElseFun1=1End IfEnd Function使该功能完整,应在空行处填入以下哪条语句
A.b Mod 2<>0
B.b Mod 2=0
C.b/2=1
D.b\2=0
相关试题
  • 下列程序的功能是:将数据1,2,…,8写...
  • 下列事件过程的功能是:建立一个名为Data1...
  • 在计算机软件系统的体系结构中,数据库管理...
  • 函数Int(Rnd*10)+10的值的范围是_...
  • 语句Form2.Show 0表示 [11] ;语...