网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
有如下程序: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)” 相关考题
考题
【程序说明】 求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
考题
有以下程序 main() { int m=0256,n=256; printf("%o%o\n",m,n); } 程序运行后的输出结果是A.0256 0400B.0256 256C.256 400D.400 400
考题
有以下程序 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
考题
若有如下程序: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
考题
若有如下程序: 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
考题
单选题有以下程序 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
考题
填空题有如下程序:STORE O TO N,SDO WHILE.T. N=N+1 S=S+NIF N=1OEXIT ENDIFENDDO?"S="+STR(S,2)
热门标签
最新试卷