软件需求规格说明的内容不包括( )。
- A.算法详细设计
- B.软件的主要功能
- C.运行环境
- D.软件的性能
热度🔥304
解析:打开微信小程序查看本题解析
在E-R图中,用来表示实体联系的图形是( )。
有以下程序
#include
#include
struct A
{
int a;
char b[10];
double c;
};
struct A f(struct A t);
main()
{
struct A a={1001,"ZhangDa",1098.0};
a=f(a);
printf("%d,%s,%6.1f\n",a.a,a.b,a.c);
}
struct A f(struct A t)
{
t.a=1002;
strcpy(t.b,"ChangRong");
t.c=1202.0;
return t;
}
程序运行后的输出结果是
有以下程序
#include
#define N 5
#define M N+1
#define f(x) (x*M)
main()
{ int i1, i2;
i1 = f(2) ;
i2 = f(1+1) ;
printf("%d %d\n", i1, i2);
}
程序的运行结果是
使用扩充的结构化分析方法建立的分析模型的核心是
下列叙述中错误的是( )。