非青黛药材的特征是()
A.粉末深蓝色
B.多孔性疏松团块
C.质轻,易飞扬
D.置水中,水液呈蓝色
E.火烧产生紫红色烟雾
参考答案:D
用于定义类成员的访问控制权限的一组关键字是
A. extends 和 implements
B. public,private 和 protected
C. class和public
D. char,int,float和double
fun( )函数的功能是首先对a所指的N行N列的矩阵,找出各行中的最大的数,再求这N个最大值中 的最小的那个数作为函数值返回,请填空。 #include<stdio.h> #define N 100 int fun(int( * a)[N]) { in(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; }