【名词&注释】
软件设计(software design)、字符串(string)、形式参数(formal parameter)、关键是、运算符(operator)、信息隐蔽(information hiding)、返回值、循环体(loop body)、标识符(identifier)
[单选题]下面不属于软件设计原则的是______。
A. 抽象
B. 模块化
C. 自底向上
D. 信息隐蔽
查看答案&解析查看所有试题
学习资料:
[单选题]设有程序段 int k=10; while(k=0)k=k-1; 则下面描述中正确的是
A. while循环执行10次
B. 循环是无限循环
C. 循环体(loop body)语句一次也不执行
D. 循环体(loop body)语句执行一次
[单选题]对下列程序段的描述正确的是( )。 #includeiostream.h> int fun(int,int); void main() { coutfun(1,2)endl; } int fun(int x,int y) { return x+y; }
A. 该函数调用方式正确,但函数定义错误
B. 该函数定义和调用方式都正确
C. 该函数定义和调用方式都错误
[单选题]23 有如下程序段,该程序段循环的次数是______。 Dim i As Integer Dim j As Integer Dim k As Integer k=0 For i = 0 To 10 Step 3 For j = 1 To 5 If j > 3 Then k = k + 4: Exit For k=k+1 Print k Next j If i > 8 Then Exit For Next i
A. 9
B. 10
C. 11
D. 12
[单选题]条件函数IIF(LEN(SPACE(3))>3,1,-1)的值为______。
A. .T.
B. .F.
C. 1
D. -1
[单选题]如下程序的输出结果是 #includeiostream> #includeiomanip> using namespace std; class CSum{ int x,y; public: CSum(int x0,int y0):X(x0),y(y0){ } friend ostream& operator(ostream& os,const CSum& xA) { ossetw(5)xa.x+xa.y: return os; } }; int main( ){ CSum y(3,5); coutsetfill('*')8; couty; return 0; }
A. ****88
B. ****8****8
C. 8****8
本文链接:https://www.51ksbd.net/show/vl83wr.html