非导电媒质界面上
任何界质界面上
导电媒质界面上
以上三者都有可能
第1题:
等角投影的条件是ω=0(或a=b,m=n)。()
第2题:
下列程序在输入m后,求满足条件“n!<=m<=(n+1)!”的值n,请将程序补充完整。
include <iostream>
using namespace std;
int main()
{
int n,m, jc = 1;
cin>>m;
for(n=2;jc<=m;n++)
jc = jc*n;
cout<<"n="<<【 】<<end1;
return 0;
}
第3题:
下列条件语句中,功能与其他语句不同的是
A.if(A) printf("%d\n",x); else printf("%d\n",y);
B.if(a==0) printf("%d\n",y); else printf("%d\n",x);
C.if(a!=0) printf("%d\n",x); else printf("%d\n",y);
D.if(a==0) printf("%d\n",x); else printf("%d\n",y);
第4题:
第5题:
第6题:
A.top==0
B.top!=0
C.top=-1
D.top==n-1
第7题:
某人设计了下面的函数fun,功能是返回参数a中数值的位数: Function fun(a AS Integer)AS Integer Dim n% N=1 While a\10>=0 N=n+l:a=a\l0 Wend Fun=n End Function 在调用该函数时发现返回的结果不正确,函数需要修改,下面的修改方案中正确的是。 A.把错句n=1改为n=0 B.把循环条件a\l0>=0改为a\l0>0 C.把语句a=a\l0改为a=a Mod 10 D.把语句fun=n改为fun=a
第8题:
( 34 )某人设计了下面的函数 fun ,功能是返回参数 a 中数值的位数
Function fun(a As Integer) As Integer
Dim n%
n = 1
While a \ 10 >= 0
n = n + 1
a = a \ 10
Wend
fun = n
End Function
在调用该函数时发现返回的结果不正确 , 函数需要修改 , 下面的修改方案中正确的是
A ) 把语句 n = 1 改为 n = 0
B ) 把循环条件 a \ 10 >= 0 改为 a \ 10 > 0
C ) 把语句 a = a \ 10 改为 a = a Mod 10
D ) 把语句 fun = n 改为 fun = a
第9题:
第10题:
判断栈满(元素个数最多n个)的条件是()。
Atop==0
Btop!=0
Ctop=-1
Dtop==n-1