有如下程序:STORE O TO N,SDO WHILE.T. N=N+1 S=S+NIF N=1OEXIT ENDIFENDDO?"S="+STR(S,2)

有如下程序:STORE O TO N,SDO WHILE.T. N=N+1 S=S+NIF N>=1OEXIT ENDIFENDDO?"S="+STR(S,2)


相关考题:

一个优化的程序可以生成n个元素集合的所有子集,那么该程序的时间复杂度是()A.O(n!)B.O(nlogn)C.O(n^2)D.O(2^n)

【程序说明】 求1~10之间的所有整数之和。【程序】SET TALK OFFSTORE 0 TO N,SDO WHILE (1)N=N+1S=S+NIF (2)(3)ENDIFENDDO? “ S=”+STR (S,2)SET TALK ONRETURN(1)A..F.B..T.C.N<=10D.N>=10

【程序说明】程序功能是比较从键盘输入的若干个数的大小,并输出其中的最大和最小值。【程序】SET TALK OFFCLEAINPUT“M=” TO M(4)DO WHILE .T.INPUT“N=” TO N(5)D=NENDIFIF X>N(6)ENDIFYN=“A”(7)WAIT“是否继续输入(Y—继续/N—结束)”TO YNENDDO(8)EXITENDIFENDDO?“最大的数是:”,D?“最小的数是:”,XSET TALK ON(4)A.STORE M,0 TO D,XB.STORE 0 TO D,XC.STORE M TO D,XD.STORE 0,0 TO D,X

下面程序段的时间复杂度为()。A.O(n)B.O(n2)C.O(1)D.O(nlog2n)

程序段s=i=0;do{i=i+1;s=s+i;}while(i=n);的时间复杂度为()。A、O(n)B、O(nlog2n)C、O(n)D、O(n/2)

下列程序段的时间复杂度为()。A.O(3n)B.O(n)C.O(n2)D.O(log3n)

有以下程序 main() { int m=0256,n=256; printf("%o%o\n",m,n); } 程序运行后的输出结果是A.0256 0400B.0256 256C.256 400D.400 400

有程序段如下:STORE 0 T0 X,YD0 WHILE.T.X=X+1Y=Y+XIF X=100EXITENDIFENDDO?“Y=”+STR(Y,3)这个程序的功能是【 】。

有以下程序 include int fun(char s[]) { int n=O; whil 有以下程序 #include <stdio.h> int fun(char s[]) { int n=O; while(*s<='9'*s>='0') { n=10*n+*s-'0'; s++; } return (n); } main() { char s[10]={ '6', '1', '*', '4', '*', '9', '*', '0', '*'}; printf("%d\n",fun(s)); }A.9B.61490C.61D.5

有以下程序:include using namespace std;int main ( ){ int n[3],i,j,k = 2; for(i 有以下程序: #include <iostream> using namespace std; int main ( ) { int n[3],i,j,k = 2; for(i = 0;i<k;i++) n[i] = O; for(i = O;i<k;i++) { for(j = O;j<k;j++) n[j] = n[i] + 1; } cout<<n [0 ] <<end1; return 0; } 上述程序运行后,输出结果是( )。A.0B.1C.2D.3

有如下程序main(){ float x=2.0,y;if(x10.0)y=1.O/x;else y=1.0;printf("% 有如下程序 main() { float x=2.0,y; if(x<0.0)y=0.0; else if(x>10.0)y=1.O/x; else y=1.0; printf("%f\n",y);} 该程序的输出结果是A.0B.0.25C.0.5D.1

有如下程序: SET TALK OFF M=O N=O DO WHILE NM M-M+N N=N-10 ENDDO ?M RETURN 运行此程序显示M的值( )。A.0B.10C.100D.99

若有如下程序:includeusing namespace std;int s=O;class sample{static int n;publi 若有如下程序: #include<iostream> using namespace std; int s=O; class sample { static int n; public: sample(int i) { n=i; } static void add() { s+=n; } }; int sample::s=0; int main() { sample a(2),b(5); sample::add(); cout<<S<<end1; return 0; } 程序运行后的输出结果是A.2B.5C.7D.3

有以下程序:include main( ){int m =0256,n =256;printf( "% o % o \n" ,m,n); 程序 有以下程序: #include <stdio, h> main( ) { int m =0256,n =256; printf( "% o % o \n" ,m,n); 程序运行后的输出结果是( ) 。A.0256 0400B.0256 256C.256 400D.400 400

有以下程序:include void sort(int L[],int n){ int j, k, flag, temp; flag=n-1; 有以下程序: #include <iostream.h> void sort(int L[],int n) { int j, k, flag, temp; flag=n-1; while (flag>O) { k=flag-1; flag=O; for (j=O; j<=k; j++) { if(L[j]>L[j+1]) {A.123B.3210C.2130D.1230

SETTALKOFF STORE 0 TO S N=20 DO WHILE N>S S=S+N N=N-2 ENDDO ?S RETURN 上列程序的运行结果是A.0B.2C.20D.18

下面程序中算法的时间复杂度是()A.O(n)B.O(n^2)C.O(logn)D.O(n*logn)

下面程序的时间复杂为()A.O(n)B.O(n^2)C.O(n^3)D.O(n^4)

若有如下程序:includeusing namespace std;int s=0;class sample{static int n;pubic 若有如下程序: #include<iostream> using namespace std; int s=0; class sample { static int n; pubic: sample(int i) { n=i; } static void add() { S+=n; } }; int sample::n=O; int main() { sample a(2),b(5); sample::add(); cout<<s<<endl; return 0; } 程序运行后的输出结果是( )。A.2B.5C.7D.3

若有如下程序段: int n=1O; while(1)n--; printf("%d";n); 则while循环执行的次数是( )。A.0B.1C.10D.无数

若有如下程序: include using namespaces std;int s=O;class sample {static int n;p 若有如下程序: #include <iostream> using namespaces std; int s=O; class sample { static int n; public: sample(int i) { n=i; } static void add() { s+=n; } }; int sample::s=O; int main() { sample a(2),b(5); sample: :add(); cout<<s<<end1; return 0; } 程序运行后的输出结果是A.2B.5C.7D.3

有以下程序  fun(Char p[][10])     {int n=O,i;  for(i=O;i7;i++)  if(p[i][O]==’T’)n++;         return n;      }  main( )   {Char str[][10]={”Mon”,”Tue”,”Wed”,”Thu”,”Fri”,”Sat”,”Sun”};      printf(”%d/n”,fun(str));      }  程序执行后的输出结果是()A、OB、1C、2D、3

下面程序段的时间复杂度为()。 i=1; while(i=n)i=i*3;A、O(n)B、O(3n)C、O(log3n)D、O(n3)

下面程序的时间复杂度为()。 for(i=0;iA、O(m×n×t)B、O(m+n+t)C、O(m+n×t)D、O(m×t+n)

设有程序段 i=1; while (i=n) i=i*2; 上面程序段的时间复杂度为()。  A、O(n)B、O(log n)C、O( nlog n)D、O(n2)

单选题有以下程序  fun(Char p[][10])     {int n=O,i;  for(i=O;i7;i++)  if(p[i][O]==’T’)n++;         return n;      }  main( )   {Char str[][10]={”Mon”,”Tue”,”Wed”,”Thu”,”Fri”,”Sat”,”Sun”};      printf(”%d/n”,fun(str));      }  程序执行后的输出结果是()AOB1C2D3

填空题有如下程序:STORE O TO N,SDO WHILE.T. N=N+1 S=S+NIF N=1OEXIT ENDIFENDDO?"S="+STR(S,2)