填空题
下列软件系统结构图
的宽度为
【1】
。
【参考答案】
C
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
诊断和改正程序中错误的工作通常称为 【3】 。
点击查看答案
单项选择题
有如下程序:#include <iostream>using namespace std;class Baseprivate: char c;public: Base(char n):c(n) ~Base() cout<<c;;class Derived: public Baseprivate: char c;public: Derived(char n):Base(n+1),c(n) ~Derived() cout<<c;;int main() Derived obj(’x’); return 0;执行上面的程序将输出( )。
A.xy
B.yx
C.x
D.y
点击查看答案
相关试题
请将下列类定义补充完整。class Base pub...
【14】 允许用户为类定义一种模式,使得...
以下程序的执行结果是 【11】 。#incl...
阅读下面程序:#include <iostream.h>...
在下面的程序的横线处填上适当的语句,使该...