Task 1 Directions: The following is a list of terms used on the internet. (下略) A—document management B—digitized document C—software technology D—text formatting E—form processing F—software package G—highly integrated web systems H—operating system I—the computing industry J—word processing K—table tools L—color options M—drop-down menu N—web site creation O—Internet resources ( )高集成网络系统 ( )计算机产业
查看答案
Task 1 Directions: The following is a list of terms used on the internet. (下略) A—document management B—digitized document C—software technology D—text formatting E—form processing F—software package G—highly integrated web systems H—operating system I—the computing industry J—word processing K—table tools L—color options M—drop-down menu N—web site creation O—Internet resources ( )表格处理 ( )因特网资源
以下程序的功能是:求出数组x中各相邻两个元素的和,依次存放到a数组中,然后输出,请填空。 main() int x[10],a[9],I; for(i=0;i<10;i++) scanf("%d",&x[i]); for(i=1;i<10;i++) a[i-1]=x[i]+______; for(i=0;i<9;i++) printf("%d",a[i]); printf("\n");
若有下列定义(设int类型变量占2个字节): int i=8,j=9; 则下列语句: printf("i=%u,j=%x\n".i,j); 输出的结果是( )。
A) i=8,j=9 B) 8.9C) 89 D) i=8,i=8
设函数fun的定义形式为: void fun(char ch,float x) 则以下对函数fun的调用语句中,正确的是 ______。
A) fun("abc",3.0);
B) t=fun(’D’,16.5);
C) fun(’65’,2,8);
D) fun(32,32);