填空题

数据管理技术发展过程经过人工管理、文件系统和数据库系统三个阶段,其中数据独立性最高的阶段是【 】。

【参考答案】

数据库系统
<上一题 目录 下一题>
热门 试题

填空题
以下程序的运行结果是【 】#include <string.h>typedef struct student{char name[10];long sno;float score; }STU;main( ){ STU a={“zhangsan”,2001,95},b={“Shangxian”,2002,90},c={“Anhua”,2003,95},d,*p=&d; d=a;if(strcmp(a.name,b.name)>0) d=b;if(strcmp(c.name,d.name)>0) d=c;printf(“%ld%s n”,d.sno,p->name); }
填空题
以下程序从终端读入数据到数组中,统计其中正数的个数,并计算它们之和。请填空。main( ){ int i,a[20],sum,count;sum=count=0;for(i=0;i<20;i++= scanf( %d ,【 】);fro(i=0;i<20;i++={ if(a>0){ count++;sum+=【 】;}}printf( sum=%d,count=%d n ,sum,count);=
相关试题
  • 有以下程序:#define f(x)(x*x)main...
  • 有以下程序main(int argc,char *argv...
  • 以下程序从终端读入数据到数组中,统计其中...
  • 有以下程序 main() {int i,j;for(...
  • 若各选项中所用变量已正确定义,函数fun中...