网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
设有程序段 i=1; while (i<=n) i=i*2; 上面程序段的时间复杂度为()。
- A、O(n)
- B、O(log n)
- C、O( nlog n)
- D、O(n2)
参考答案
更多 “ 设有程序段 i=1; while (i=n) i=i*2; 上面程序段的时间复杂度为()。 A、O(n)B、O(log n)C、O( nlog n)D、O(n2)” 相关考题
考题
设变量已正确定义,则以下能正确计算f=n!的程序段是( )。A)f=0; B)f=1; for(i=1;i=n;i++) f*=i; for(i=1;in;i++) f*=i;C)f=1; D)f=1; for(i=n;i1;i++) f*=i; for(i=n;i=2;i--) f*=i;
考题
设变量已正确定义,则下列能正确计算f=n!的程序段是( )。A.f=0; for(i=1;i<=n;i++)f*=i;B.f=1; for(i=1;i<n;i++)f*=i;C.f=1; for(i=n;i>1;i++)f*=i;D.f=1; for(i=n;i>=2;i--)f*=i;
考题
若变量已正确定义,要求程序段完成求5!的计算,不能完成此操作的程序段是A.for(i=1,p=1;i<=5;i++) p*=i;B.for(i=1;i<=5;i++){ p=1; p*=i;}C.i=1;p=1;while(i<=5){p*=i; i++;}D.i=1;p=1;do{p*=i; i++; }while(i<=5);
考题
以下能够正确计算n!的程序是A.Private Sub Command1_Chck( ) n=5:x=1 Do x=x*i i=i+1 Loop While i<n Print x End SubB.Private Sub Command1_Click( ) n=5:x=1:i=l Do x=x*i i=i+1 Loop While i<n Print x End SubC.Private Sub Command1_Click( ) n=5:x=1:i=l Do x=x*i i=i+1 Loop While i<=n Print x End SubD.Private Sub Command1_Click( ) n=5:x=1:i=l Dox=x*i i=i+1 Loop While i>n Print x End Sub
考题
以下能够正确计算n!的程序是A.Private Sub Command1 Click() n=5:x=1 Do x=x * I I=I + 1 Loop While I < n Print x End SubB.Private Sub Command1_Click() n=5:X=1:I=1 Do X=X*I I=I + 1 Loop While I <n Print x End SubC.Private Sub Command1_Click() n=5:X=1:I=1 Do X=X * I I=I + 1 Loop While I<=n Print X End SubD.Private Sub Command1_Click() n=5:X=1:I=1 Do x=x * I I=I + 1 Loop While I>n Print X End Sub
考题
设变量已正确定义,则以下能正确计算n!的程序段是______。A.f=0; for(i=1; i<=n; i++)f*=i;B.f=1; for(i=1; i<n; i++)f*=i;C.f=1; for(i=n; i>1; i++)f*=i;D.f=1; for(i=n; i>=2; i--)f*=i;
考题
阅读以下说明和C语言程序,将应填入(n)处的字句写在对应栏内。【说明】计算n的合数。一个整数n可以有多种划分,使其划分的一列整数之和为n。例如,整数5的划分为:54 13 23 1 12 2 12 1 1 11 1 1 1 1共有7种划分。这种划分的程序如下所示。【程序】include <stdio.h>int n[1000],m,k;void output sum(){int j;for(j=0;n[j]!=0;j++)printf("%d\t",n[j]);printf("\n");}void sum(int i)if(m-n[i]<n[i]){ m=m-n[i];(1)i++;n[i+1]=0;}else{(2)m-=n[i];i++;}if(m!=n[i])sum(i);elseoutput_sum();if(n[i]>1){n[i]--;(3)}else{while((n[i]==1)(i>O)){i--;(4)}if(i!=0){(5)sum(i);}}}void main(){int i;scanf("%d",n[0]);m=k=n[0];for(i=1;i<=k;i++)n[i]=0;while(n[0]!=1){n[0]--;i=0;sum(0);m=k;}}
考题
以下能够正确计算n! 的程序是( )。A.Private Sub Command1_Click( ) n=5:x=l Do x=x*i i=i+1 Loop While i < n Print x End SubB.Private Sub Command1_Click( ) n=5:x=1:i=1 Do x=x*i i=i+1 Loop While i < n Print x End SubC.Private Sub Command1_Cliek( ) n:5:x=1:i=1 Do x=x* i i:i+1 Loop While i < = n Print x End SubD.Private Sub Command1_Cliek( ) n=5:x:1:i=1 Do x=x*i i=j+1 Loop While i > n Print x End Sub
考题
下列程序段的运行结果是( )。 Subsele() Dim n As Integer i=21:n=3 Do While i>n i=i-n Loop Print i End SubA.2B.4C.5D.3
考题
以下能够正确计算n!的程序是A.Privas Sub Command1_Click() n=5:x=1 Do x=x*i i=i+1 Loop While i<n Print x End SubB.Private Sub Command1_Click() n=5:x=1:i=1 Do x=x*i i=i+1 Loop While i<n Print x End SubC.Private Sub Command1_Click() n=5:x=1:i=1 Do x=x*i i=i+1 Loop while i<=n Print x End SubD.Private Sub Command1_Click() n=5:x=1:i=1 Do x=x*i i=i+1 Loop While i>n Print x End Sub
考题
下列程序段的运行结果是( )。 Sub sele() Dim n As Integer i=21: n=3 Do While i > n i=i-n Loop Print i End SubA.2B.4C.5D.3
考题
以下能够正确计算n!的程序是______。A.Private Sub Commeadl_Click() n=5: x=1 Do x=x*i i=i+1 Loop While i<n Print x End SubB.Private Sub Command1_Click() n=5: x=1: i=1 Do x=x*i i=i+1 Loop While i<n Print x End SubC.Private Sub Command1_Click() n=5: x=1: i=1 Do x=x*i i=i+1 Loop Whilei<=n Print x End SubD.Private Sub Commsndl_Click() n=5: x=1: i=1 Do x=x*i i=i+1 Loop While i>n Print x End Sub
考题
有以下程序:include main(){ int i,n=0;for(i=2;i
有以下程序: #include <stdio.h> main() { int i,n=0; for(i=2;i<5;i++) { do { if(i%3) continue; n++; } while(! i); n++; } printf("n=%d\n",n); } 程序执行后的输出结果是( )。A.n=5B.n=2C.n=3D.n=4
考题
若变量已正确定义,要求程序段完成5!的计算,不能完成此操作的程序段是 ______。A.for (i=1,p=1; i<=5; i+ +)p* = i;B.for (i=1;i<=5; i+ +) {p=1;p*=i;}C.i=1;p= 1;while( i<=5) { p* =i;i+ +; }D.i=1;p=1;do{ p*=i;i+ +; } while (i<=5);
考题
若变量已正确定义,要求程序段完成求5!的计算,不能完成此操作的程序段是()A、for(i=1,p=1;i=5;i++)p*=iB、for(i=1;i=5;i++){p=1;p*=i;}C、i=1;p=1;while(i=5){p*=i;i++;}D、i=1;p=1;do{p*=i;i++;}while(i=5)
考题
以下能正确计算1×2×3×…×10的程序段是()。A、do{i=1;s=1;B、do{i=1;s=0;s=s*i;s=s*i;i++;i++;}while(i=10);}while(i=10);C、i=1;s=1;D、i=1;s=0;do{s=s*i;do{s=s*i;i++;i++;}while(i=10);}while(i=10);
考题
若变量已正确定义,以下不能正确计算1+2+3+4+5的程序段是()。A、i=1;s=1;do{s=s+i;i++;}while(i5);B、i=0;s=0;do{i++;s=s+i;}while(i5);C、i=1;s=0;do{s=s+i;i++;}while(i6);D、i=1;s=0;do{s=s+i;i++;}while(i=5);
考题
单选题若要实现total=1+2+3+4+5求和,以下程序段错误的是( )。A
int i=1,total=1;
while(i5)
{
total+=i;
i+=1;
}B
int i=1,total=0;
while(i =5)
{
total+=i;
i+=1;
}C
int i=0,total=0;
while(i 5)
{
i+=1;
total+=i;
}D
int i=0,total=0;
while(i =5)
{
total+=i;
i+=1;
}
考题
单选题以下程序段中,循环次数不超过10的是( )。A
int i=10;do{i=i+1;}while(i0);B
int i=int i=5;do{i+=1;}while(i0);C
int i=1;do{i+=2;}while(i!=10);D
int i=6;do{i-=2;}while(i!=1);
考题
填空题下面程序段的时间复杂度是() i=1; while(i<=n) i=i*3;
热门标签
最新试卷