填空题

耦合和内聚是评价模块独立性的两个主要标准,其中 【3】 反映了模块内各成分之间的联系。

【参考答案】

内聚
<上一题 目录 下一题>
热门 试题

填空题
在面向对象方法中,类之间共享属性和操作的机制称为 【2】 。
单项选择题
阅读下列程序,当运行函数时,输入asd af aa z67,则输出为 #include<stdio.h> #include<ctype.h> #include<string.h> int fun(char*str) int i,j=0; for(i=0;str[i]!=’ 0’;i++) if(str[i]!=’’)str[j++]=str[i]; str[j]=’ 0’; main() char str[81]; int n; clrscr(); printf( Input a string: ); gets(str); puts(str); fun(str); printf( %s n ,str);
A.asdafaaz67
B.asdafaaz67
C.asd
D.z67
相关试题
  • 以下程序的功能是:处理由学号和成绩组成的...
  • 函数my_cmp()的功能是比较字符串s和t的...
  • 有下列程序,功能是把输入的+进制长整型数...
  • 以下程序的输出结果是 【18】 。 void...
  • 以下程序的功能是:删去一维数组中所有相同...