填空题
计算机的运算速度可以用MIPS来描述,1MIPS是指每秒执行______条指令。
【参考答案】
5、100万
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
下列程序的功能是将字符串s中所有的字符c删除。请填空。 #include <stdio.h> main() char s[80]; int i,j; gets(s); for(i=j=0;s[i] !=’ 0’;i++) if(s[i]!=’c’)______; s[j]=’ O’; puts(s);
点击查看答案&解析
填空题
fun函数的功能是:首先对a所指的N行N列的矩阵,找出各行中的最大的数,再求这N个最大值中的最小的那个数作为函数值返回。请填空。 #include<stdio.h> #define N 100 int fun(int(*a)[N]) int row,col,max,min; for(row=0;row<N;row++) for(max=a[row][0],col=1;col<N;col++) if(______)max=a[row][col]; if(row==0)min=max; else if(______)min=max; return min;
点击查看答案&解析
相关试题
fun函数的功能是:首先对a所指的N行N列的矩...
下列程序的输出结果是______。 #in...