网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
以下代码if(time<20){x="Goodday";}else{x="Goodevening";}当time等于多少时x输出Goodday?()
- A、12
- B、24
- C、5
- D、20
参考答案
更多 “以下代码if(time20){x="Goodday";}else{x="Goodevening";}当time等于多少时x输出Goodday?()A、12B、24C、5D、20” 相关考题
考题
阅读以下代码:publicclassTest{publicstaticvoidmain(){System.out.println(x=”+x);}}请问,代码运行的结果是?()
A.xB.x=xC.“x=”+5D.编译报错
考题
阅读以下应用说明及Visual Basic程序代码,将应填入(n)处的字句写在对应栏内。【说明8.1】以下程序的功能是:生成20个200~300之间的随机整数,输出其中能被5整除的数并求出它们的和。【程序代码8.1】Private Sub Command1_Click()For i=1 To 20x=Int((1)*200+100)If (2)=0 ThenPrint xS=S+ (3)End IfNext iPrint"Sum=";SEnd Sub【说明8.2】程序8.2运行后,单击窗体,则在窗体上显示的内容是:a=(4)和b=(5)。【程序代码8.2】Private Sub Form_Click()Dim a As Integer,b As Integera=20:b=50p1 a,bp2 a,bp3 a,bPrint"a=";a,"b=";bEnd SubSub p1(x As Integer, ByValy As Integer)x=x+l0y=y+20End SubSub p2(ByVal×As Integer, y As Integer)x=x+l0y=y+20End SubSub p3(ByVal×As Integer, ByVal y As Integer)x=x+10y=y+20End Sub
考题
阅读以下说明和C++代码,填入(n)处。[说明]以下C++代码使用虚函数实现了同一基类shape派生出来的Class rectangle、Class triangle、Class circle实现了计算矩形、圆形面积的计算。仔细阅读以下代码,将(n)处语句补充完整。[代码5-1]include<iostream.h>define PI 3.14159class shape {//基类protected:(1);public:(2);(3);};[代码5-2]class rectangle: public shape {public:rectangle (int x2,int y2,int r2): (4) {};double area ( ) {return x*y; };};class circle: public shape {public:circle (int x3,int y3,int r3):(5){};double area ( ) {return r*r*PI; };};[代码5-3]void main ( ){rectangle r (10,20,0);circle c (0,0,30);shape (6);cout<<"长方形面积="<<s1->area ( ) <<endl;cout<<"圆形面积="<<s2->area ( ) <<endl;}[运行结果]长方形面积=200圆形面积=2827.43
考题
以下程序代码实现单击命令按钮Commandl时生成20个(0,100)之间的随机整数,存于数组中,打印数组中大于50的数,并求这些数的和。Dimalt(1 To 20)Fori=1 To 20arr(i)=NextiSub=0For Each X In arrIf X>50 ThenPrint Tab(20);XSum=Sum+XEnd IfNext XPrint Tab(20);"Su
考题
阅读以下说明和C++码,将相应的文字填入(n)处,写在对应栏内。[说明]以下代码实现了对象引用作为函数参数,仔细阅读以下代码,分析运行结果,填入(n)处。[代码]include<iostream.h>class Sample{int x,y;public:Sample() {x=y=0; }Sample (int i, int j ) {x=i; y=j; }void copy ( Sample s ).,void setxy ( int i, int j ) {x=i; y=j; }void print ( {cout<<"x="<<x<<end1 ; cout <<"y="<<y<<end1;};void Sample: copy ( Sample s ){X=S.X;y=s.y;}void func ( Sample s1, Sample s2 ){s1.setxy ( 10,20 );s2.setxy ( 30,40 );}void main ( ){Sample p ( 1,2 ) ,q;q.copy ( p );time ( p,q );p.print ( );q.print ( );}运行结果(1)(2)(3)(4)
考题
下列程序的输出结果是()。 include int fun(int x) {int a;if(x==0‖x==1) return 3;els
下列程序的输出结果是( )。 #include<stdio.h> int fun(int x) { int a; if(x==0‖x==1) return 3; else a=x-fun(x-2); return a; } void main() { printf("%d",fun(7)); }A.2B.8C.9D.5
考题
以下程序代码实现单击命令按钮Command1时生成20个(0,100)之间的随机整数,存于数组中,打印数组中大于50的数,并求这些数的和。Dim arr(1 To 20)For i=1 To 20arr(i)=【 】Next iSum=0For Each X In【 】If X>50 ThenPrint Tab(20);XSum=Sum+XEnd IfNext XPrint Tab(20);“Sum=”;Sum
考题
运行以下的程序代码,结果是()。includeusing namespace std;intmain(){int x=5;int *q
运行以下的程序代码,结果是( )。 #include<iostream> using namespace std; intmain() { int x=5; int *q=x; int y=x; y++; tout<<(*q)++<<end1; return 0; }A.5B.6C.7D.8
考题
假设今天是2006年4月1日星期六,请问以下javascript代码输出结果是:( )var time = new Date( );document.write(time.getMonth( ));
A.3B.4C.5D.4月
考题
执行下列语句后整型变量a的值是 ______。 If(3-2)>2 Then a=10 Els If(10/2)=6 Then a=20 Else a=30 End IfA.10B.20C.30D.不确定
考题
阅读以下代码: public class Test{ public static void main(){ System.out.println(“x=”+x); } } 请问,代码运行的结果是?() A、 xB、 x=xC、 “x=”+5D、 编译报错
考题
考虑以下代码: XXXXXXX: 74 20 je 8048321 XXXXXXX: b8 00 00 00 01 mov $0x1,%edx 则mov指令的地址是()A、8048321B、8048320C、8048301D、8048300
考题
Javascript中,以下代码运行后变量y的值是:() var x = [typeof x, typeof y][1]; var y = typeof typeof x;A、"number"B、"string"C、"undefined"D、"object"
考题
我们设计程序时,尤其在绘制图形时,经常需要暂停一下程序,如暂停2秒,我们可以使用以下的代码()。A、time.clear(2)B、turtle.clear(2)C、time.sleep(2)D、turtle.sleep(2)
考题
单选题Javascript中, 以下代码运行后变量y的值是:() var x = [‘abcde’ , 123456]; var y = typeof typeof x[1];A
functionB
objectC
numberD
string
考题
单选题Javascript中,以下代码运行后变量y的值是:() var x = [typeof x, typeof y][1]; var y = typeof typeof x;A
numberB
stringC
undefinedD
object
考题
单选题阅读以下代码: public class Test{ public static void main(){ System.out.println(“x=”+x); } } 请问,代码运行的结果是?()A
xB
x=xC
“x=”+5D
编译报错
热门标签
最新试卷