若程序运行时输入A值为6,B值为4,则A的输出结果为 ______。
A.6
B.4
C.3
D.2
第1题:
若程序运行时输入A值为9,B值为18,则A的输出结果为 ______。
A.9
B.10
C.18
D.27
第2题:
已知字符A的ASCII代码值为65,以下程序运行时,若从键盘输入:B33<回车>。则输出结果是______。 #include "stdio.h" main() { char a,b; a=getchar();scanf("Xd",&b); a=a-'A'+'0';b=b*2; printf("%c%c\n",a,b); }
A.2 B
B.1 B
C.3 B
D.4 B
第3题:
已知字符A的ASCII代码值为65,以下程序运行时若从键盘输入:B33<回车>,则输出结果是________。 main() { char a,b; a=getchar();scanf("%d",&b); b=b*2; printf("%cn",b); }
第4题:
若程序运行时输入A值为15,B值为10,则A的输出结果为 ______。
A.6
B.10
C.5
D.1
第5题:
已知字符A的ASCⅡ代码值为65,以下程序运行时若从键盘输入:B33<回车>.则输出结果是( )。
include
main()
{ char a,b;
a=getchar();scanf("%d",&B);
a=a-'A'+'0';b=b*2;
printf("%c%c\n",a,B);
}