网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
下面程序运行后,输出的结果是() 10 A=5:B=9 20 X=A-B 30 IF A>B THEN X=A+B 40 PRINT X 50 END
A
-4
B
5
C
9
D
4
参考答案
参考解析
解析:
暂无解析
更多 “单选题下面程序运行后,输出的结果是() 10 A=5:B=9 20 X=A-B 30 IF AB THEN X=A+B 40 PRINT X 50 ENDA -4B 5C 9D 4” 相关考题
考题
有以下程序main(){ int a=0, b=0;a=10; /* 给 a 赋值b=20; 给 b 赋值 */printf("a+b=%d\n",a+b); /* 输出计算结果 */}程序运行后的输出结果是A)a+b=10B)a+b=30C)30D) 出错
考题
有以下程序#include stdio.hfun(int x){ if(x/20) f un(x/2);printf("%d ",x);}main(){ fun(6);printf("\n"); }程序运行后的输出结果是 【 1 5 】 。
考题
以下程序运行后输出结果是【】。int a=30,b=40;void fun(int x,int y){ int z;z=(xy)?x:y;a=z+10;b=z+20;}main(){printf("a=%d,b=%d\n",a,b);fun(a,b);prinf("a=%d,b=%d\n",a,b);}
考题
若有如下程序:public class Test {public static void main (String[] args) {int x=20;if (x>10) System.out.print(x-=5);if (x>5) System.out.print(x--);}}则程序运行后的输出结果是【 】。
考题
有以下程序 main() {int a=0,b=0; a=10; /* 给a赋值 b=20; 给b赋值 */ printf("a+b=%d\n",a+b);/* 输出计算结果 */ } 程序运行后的输出结果是______。A.a+b=10B.a+b=30C.30D.出错
考题
(36)有以下程序#include stdio.h#define PT 3.5;#define S(x) PT*x*x;main(){ int a=1, b=2; printf(“%4.1f\n”,S(a+b));}程序运行后输出的结果是A)14.0 B)31.5 C)7.5 D)程序有错无输出结果
考题
以下程序运行后,输出结果是define PT5.5define S(x)PT*x*xincludemain(){int a=1,b=
以下程序运行后,输出结果是 #define PT 5.5 #define S(x) PT*x*x #include<stdio.h> main() { int a=1,b=2; printf("%4.1f\n",s(a+b));}A.49.5B.9.5C.22D.45.0
考题
( 30 )下面程序运行时,若输入 395 ,则输出结果是Private Sub Comand1_Click ()Dim x%x=InputBox (" 请输入一个 3 位整数 ")Print x Mod 10,x\100, ( x Mod 100 ) \10End SubA ) 3 9 5B ) 5 3 9C ) 5 9 3D ) 3 5 9
考题
下面程序运行时,若输入395,则输出结果是Prirate sub commandl_Click()Dim x%x=InputBox(“请输入一个3位整数”)Print x Mod 10,x\100,(x Mod 100)\10End SubA.3 9 5B.5 3 9C.5 9 3D.3 5 9
考题
有以下程序: #includestdio.h main( ) {int X=011; printf("%d\n",++x); } 程序运行后的输出结果是( )。A.12B.11C.10D.9
考题
以下程序运行后,输出结果是______。includedefine PT 5.5difine S(x) PT*x*xmain(){i
以下程序运行后,输出结果是______。 #include<stdio.h> #define PT 5.5 #difine S(x) PT*x*x main() { int a=1,b=2; printf("%4.1f/n",S(a+b)); }A.49.5B.9.5C.22D.45
考题
以下程序运行后的输出结果是( )。 include main() { int x=20; printf("%d", 0
以下程序运行后的输出结果是( )。include<stdio.h>main(){ int x=20;printf("%d", 0<x<20);printf("%d\n", 0<x x<20);}
考题
以下程序运行后,输出结果是______。 define P4.5 define S(x)P*x*x include main() {
以下程序运行后,输出结果是______。 #define P4.5 #define S(x)P*x*x #include<stdio.h> main() { int a=2,b=3; printf("%.1f\n",S(a+b)); }A.49.5B.112.5C.18D.24
考题
有以下程序 main() {int x=10,y=10;printf("%d%d\n",x--,--y);} 程序运行后的输出结果是( )A.10 10B.9 9C.9 10D.10 9
考题
下面程序运行时,若输入395,则输出结果是( )。 Private Sub Command1_Click( ) Dim X% x=InpetBox("请输入一个3位整数") Print x Mod 10,x/100,(x Mod 100)/10 End SubA.3 9 jB.5 3 9C.5 9 3D.3 5 9
考题
有以下程序: main {int a=0,b=0; a=10; /*给a赋值 b=20; 给b赋值 */ printf("a+b=%d\n",a+b);//输出计算机结果 } 程序运行后的输出结果是( )。A.a+b=10B.a+b=30C.30D.出错
考题
有下列程序:includestdi0.hdefinePT3.5;defineS(x)PT*x*x;voidmain( )(inta=1.b=2;printf(%4.1f\n,S(a+b));}程序运行后的输出结果是( )。A.14.0B.31.5C.7.5D.程序有错,无输出结果
考题
(10)以下程序运行后的输出结果是 【10】 。#include stdio.hmain(){ int x=10,y=20,t=0;if(x==y)t=x;x=y;y=t;printf("%d %d\n",x,y);}
考题
单选题下列VB程序段的输出结果是()。 A=45 : B=20 Max=(A+B)/2+Abs(A-B)/2 Print MaxA
10B
20C
30D
45
热门标签
最新试卷