填空题

数据流图的类型有 【3】 和事务型。

【参考答案】

变换型
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序: #include <iostream> #include <string> using namespace std; class Y; class X { private: int x; char *strx; public: X(int a, char *str) { x=a; strx=new char[strlen(str)+1]; strcpy(strx,str); } void show(Y &ob) ; }; class Y { private: int y; char *stry; public: Y(int b,char *str) { y=b; stry=new char[strlen(str)+1]; strcpy(stry, str); } friend void X: :show(Y &ob) ; }; void X: :show(Y &ob) { cout<<strx<< , ; cout<<ob, stry<<end1; } int main ( ) { X a(10, X ); Y b (20, Y ); a. show(B) ; return 0; } 执行后的输出结果是( )。
A.X,Y
B.a,b
C.X,X
D.Y,Y
填空题
软件工程概念的出现源自 【2】 。
相关试题
  • 下面程序的预设功能是:统计文件abc.txt中...
  • 有如下程序:#include <iostream>using...
  • 有以下程序:#include <iostream>using...
  • C++语言中,派生类继承了基类的全部数据...
  • 虚函数必须是类的 【12】 。