网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

下面语句正确的是

A.If x<3 * y And x>y Then y=x^3

B.If x<3 * y And x>y Then y=3x

C.If x<3 * y:x>y Then y=x^3

D.If x<3 * y And x>y Then y=x * * 3


参考答案

更多 “ 下面语句正确的是A.If x3 * y And xy Then y=x^3B.If x3 * y And xy Then y=3xC.If x3 * y:xy Then y=x^3D.If x3 * y And xy Then y=x * * 3 ” 相关考题
考题 下面正确的赋值语句是()。 A、x+y=30B、y=π*r*rC、y=x+10D、3y=x

考题 为表示关系:x≥Y≥z,应使用的C语言表达式是( )。A.(x=y)(y=z)B.(x=y)A 为表示关系:x≥Y≥z,应使用的C语言表达式是( )。A.(x&gt;=y)&&amp;(y&gt;=z)B.(x&gt;=y)AND(y&gt;-x)C.(x&gt;=y&gt;=z)D.(x&gt;=y)&(y&gt;=z)

考题 下面for语句的循环次数为( )。 for(x=l,y=0;(y!=19)6);x++);A.是无限循环 下面for语句的循环次数为( )。 for(x=l,y=0;(y!=19)&amp;&.(x&lt;6);x++);A.是无限循环B.循环次数不定C.最多执行6次D.最多执行5次

考题 本题是一个Applet,页面中有10个按钮,名称从“0~ 9”,用鼠标任意单击其中一个按钮后,通过键盘上的上下左右键可以控制按钮在窗口中移动。import java.applet.*;import java.awt.*;import java.awt.event.*;public class java2 extends Applet{Button b[]=new Button[10];int x,Y;public void init(){for(int i=0;i&lt;=9;i++){b[i]=new Button(""+i);b[i].addKeyListener(this);addCb[i]);}}public void{Button button=(Button)e.getSource();x=button.getBounds().x;y—button.getBounds().y;if(e,getKeyCode()= =KeyEvent.VK_UP){y=y-2;if(y&lt;=O)y=0;button.setLocation(x,y);}else if(e.getKeyCode()= =KeyEvent.VK_DOWN){y=y+2;if(y&gt;=300)y=300;button,.setLocation(X,y);}else if(e.getKeyCode()= =KeyEvent.VK_LEFT){x=x-2;if(x&lt;=0)x=0;button.setLocation(x,y);}else if(e.getKeyCode()= =KeyEvent.VK_RIGHT)(x=X+2;if(x&gt;=300)x=300;button.setLoeation(X,y);}}public void keyTyped(KeyEvent e){}public void keyReleased(KeyEvent e){}}

考题 下述语句中,_____中的if语句语法是错误的。()A.if(x>y);B.if(x==y)x+=y;C.if(x!=y)seanf("%d",x)else scanf("%d",y);D.if(x<y){x++;y++;}

考题 下面正确的赋值语句是____。A.y=x+30B.x+y=30C.y+30=x*xD.3y=x

考题 下面正确的赋值语句是()。A.x+y=30B.y=x+30C.y-6=π*x*xD.3=x+y

考题 以下不正确的if 语句形式是()A.if(x<y) {x++;y++;}B.if(x>yx!=y);C.if(x==y)x+=y;D.if(x!=y) scanf("%d",x) else scanf("%d",y);

考题 下面正确的赋值语句是________。A.x+y=30B.y=*r*rC.y=x+30D.3y=x

考题 以下为不正确的if语句的是A.if(x<y);B.if(x!=y) printf("x=%d",x); else(x==y) printf("y=%d",y);C.if(x==y) x+=y;D.if(x<y) {x++;y++;}