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

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

13、运行以下程序,输出结果的是: print(5/2)

A.3

B.2

C.2.5

D.2.50


参考答案和解析
(13)13715
更多 “13、运行以下程序,输出结果的是: print(5/2)A.3B.2C.2.5D.2.50” 相关考题
考题 若有如下程序: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--);}}则程序运行后的输出结果是【 】。

考题 有以下程序:include stdio.hmain( ){ int a=7;while(a--);print[(%d\n,a);}程序运行后的输出结果是( )。A.-1B.0C.1D.7

考题 以下程序运行时,输出的结果是 a $ = "China" b $ =Right$ (a$ ,3) : c$ =Strings (3,b$) Print c $A.ChiB.aaaC.iiiD.ina

考题 有以下程序:includestdio.hmain( ){int a=2,b=2,C=2;print{(%d\n,a/bc);}程序运行后的输出结果是( )。A.0B.1C.2D.3

考题 以下程序段的输出结果是。 num=0 while num=2 num = num+1 wend Print

考题 以下程序段的输出结果是【 】。num=0While hum<=2num=num+1Print numWend

考题 以下程序的输出结果是______。 include define FUDGE(y)2.84+y define PR(a) printf( 以下程序的输出结果是______。 #include<stdio.h> #define FUDGE(y) 2.84+y #define PR(a) printf("%d",(int)(a)) #define PRINT1(a) PR(a);putchar('\n') main() { int x=2; PRINT1(FUDGE(5)*x); }A.11B.12C.13D.15

考题 运行以下程序段后,输出结果为 【 】 。a=3:b=2Print a*(a+B)

考题 有以下程序:#includestdio.hmain( ){ int a=1,b=0;if(--a)b++;else if(a==0)b+=2;else b+=3:print[(%d\n,b);}程序运行后的输出结果是( )。A.0B.1C.2D.3

考题 以下程序的输出结果是_________。 #include<stdio.h #defineFUDGE(y) 2.84+y #define PR(A) printf("%d",(int)(A) ) #definePRINT1(A) PR(A) ;putchar('\n') main() { int x=2; PRINT1(FUDGE(5)*X); }A.11B.12C.13D.15

考题 以下程序的输出结果是______。includedefine FUDGE(y)2.84+ydefine PR(A)printf("%d" 以下程序的输出结果是______。 #include<stdio.h> #define FUDGE(y) 2.84+y #define PR(A) printf("%d",(int)(a) ) #define PRINT1(A) PR(a) ;putchar('\n') main() { int x=2; PRINT1(FUDGE(5)*X); }A.11B.12C.13D.15

考题 有以下程序main(){ char a='a',b;print("%c,",++a);printf("%c\n",b=a++);}程序运行后的输出结果是A.b,bB.b,cC.a,bD.a,c

考题 以下程序运行后的输出结果是_______。includestdio.hmain( ){int a=200,b=010;print(”%d%d\n”,a,b);}

考题 以下程序运行后,输出结果是______。includess(char*s){char *p=s; while(*.p)p++; retu 以下程序运行后,输出结果是______。#include<stdio.h>ss (char *s){ char *p=s; while(*.p)p++; return(p-s);}main(){ char *a="abded"; int i; i=ss((A); print ("%d\n",i);}A.8B.7C.6D.5

考题 有以下程序: #includestdio.h main( ) {int a=2,b=2,C=2; print{("%d\n",a/bc); } 程序运行后的输出结果是( )。A.0B.1C.2D.3

考题 若有以下程序段: int r=8; print("%d\n",r1): 输出结果是( )。 A.16B.8S 若有以下程序段: int r=8; print("%d\n",r1): 输出结果是( )。A.16B.8C.4D.2

考题 以下程序运行后的输出结果是 。includemain(){int a;a=(int)((double)(3/2)+0.5+(int)1.99*2);print{(“%d\n”,a);}

考题 有以下程序程序运行后的输出结果是( )。A.2B.0C.3D.5

考题 以下程序运行后的输出结果是______。 Private Sub Form_ Click() y=1 :x=2 Print Iif(x>=y,x,y) End SubA.0B.1C.2D.3

考题 以下程序的输出结果是 ______。 x=2^-2 Print x EndA.4B.0.25C.4D.程序错误

考题 有以下程序:程序运行后的输出结果是( )。A.OB.2C.3D.5

考题 有以下程序:程序运行后的输出结果是( )。A.*2*6B.}3*5一C.}5D.*7

考题 以下程序段运行时从键盘上输入字符“-”,则输出结果为 op$=InputBox("op=") If op$="+" Then a=a+2 If op$="-" Then a=a-2 Print aA.2B.-2C.0D.+2

考题 以下程序输出什么?"""x=1"""whilex:print(x) A.运行结果显示NameError:name'x'isnotdefinedB.运行结果无限循环输出1C.它等价于下面的程序#x=1whilex:print(x)D.它等价于下面的程序whilex:print(x)

考题 以下程序运行后输出的结果是 ______。 a = 3 b=-123 m=Len(Str$(A)+Str$(B)) Print m EndA.9B.5C.7D.8

考题 运行以下程序后,输出的结果是 for i=1 to 3 cls print" i=",i; NextA.123B.3C.i=1i=2i=3D.i=3

考题 (13)以下程序运行后的输出结果是 【13】 。#include stdio.hmain(){ int i,n[5]={0};for(i=1;i=4;i++){ n[i]==n[i-1]*2+1; printf("%d",n[i]); }printf("\n");}

考题 单选题有以下程序:#include #define F(x) 2.84+x#define PR(a) printf(%d,(int)(a))#define PRINT(a) PR(a);putchar('')main(){ PRINT(F(5)*2);}程序运行后的输出结果是(  )。A 12B 13C 15D 11