问题:
[单选题]三个运动员跨台阶,台阶总数在100-150级之间,第一位运动员每次跨3级台阶,最后一步还剩2级台阶。第二位运动员每次跨4级,最后一步还剩3级台阶。第三位运动员每次跨5级台阶,最后一步还剩4级台阶。问这些台阶总共有()级?
A.119
B.121
C.129
D.131
更多“[单选题]三个运动员跨台阶,台阶总数在100-150级之间,第一位运动员每次跨3级台阶,最后一步还剩2级台阶。第二位运动员每次跨4级,最后一步还剩3级台阶。第三位运动员每次跨5级台阶,最后一步还剩4级台阶。问这些台阶总共有()级?”相关的问题
第1题
下列程序的运行结果是 。 #include ...
</p>下列程序的运行结果是 。 #include <iostream> using namespace std; float f (float sum, float x[ ], int n) { for(int i=0; i <n 8 ; i++) sum+="x;" return sum="0," n; } void main() { float x[]="{" 2, 4, 6, }, y; y="f(sum," x, 4); “sum="”<<sum<<endl;" “y="”<<y<<endl;">
第2题
以下程序的运行结果是 。 #include<iostream> using namespace std; void main() { int x=1
</p>以下程序的运行结果是 。 #include<iostream> using namespace std; void main() { int x=1,y=0,a=0,b=0; switch(x) { case 1: switch(y) { case 0: a++; case 1: b++; } case 2: a++;b++; break; case 3: a++;b++; } cout<<"a="<<a<<", b="<<b<<" \n”;>
第3题
有以下程序#include <stdio.h>#include <string.h>main(){ printf("%d\n",strlen (
有以下程序
#include <stdio.h>
#include <string.h>
main()
{ printf("%d\n",strlen ("ATS\n012\1") ); }
程序运行后的输出结果是
A)3
B)8
C)4
D)9
第4题
下列程序的运行结果是 。 #include <iostream> using namespace std; void main() { int i,
下列程序的运行结果是 。 #include <iostream> using namespace std; void main() { int i, j, y=122, a[8]; for(i=0; y; i++) { a=y%8; y=y/8; } for(j=i-1; j>=0; j--) cout< <a[j]; endl; “y="”<<y<<endl;">
第5题
有以下程序 #include<stdio.h> main() { int a=5,b=lt; t=(a<<2)|b;printf("%d\n",t); } 程序运行后的输出结果是______。
A.21
B.11
C.6
D.1
第6题
有以下程序 #include<stdio.h> main() { int a=5,b=lt; t=(a<<2)|b;printf("%d\n",t); } 程序运行后的输出结果是______。
A.21
B.11
C.6
D.1
第7题
有以下程序#include<stdio.h>#include<string.h>main(){char a[10]=”abcd”;prinff(“
有以下程序
#include<stdio.h>
#include<string.h>
main()
{char a[10]=”abcd”;
prinff(“%d,%d\n”,strlen(A),sizeof(A));
}
程序运行后的输出结果是
A.7,4
B.4,10
C.8,8
D.10,lO
第8题
有以下程序#include<string.h>#include<iostream.h>void main(){char*p="abcde\0fghjik\0"; cou
有以下程序 #include<string.h> #include<iostream.h> void main() { char*p="abcde\0fghjik\0"; cout<<strlen(p);} 程序运行后的输出结果是
A.12
B.15
C.6
D.5
第9题
有以下程序#include<string.h>#include<iostream.h>void main(){char*p="abcde\ofghjik\O"; cout
有以下程序 #include<string.h> #include<iostream.h> void main() { char*p="abcde\ofghjik\O"; cout<<strlen(p);} 程序运行后的输出结果是
A.12
B.15
C.6
D.5 |