题目 / 答案提交正确答案
有以下程序 #include<stdio.h> int main(void) { char c1,c2,c3,c4,c5,c6; scanf("%c%c%c%c",&c1,&c2,&c3,&c4); c5=getchar(); c6=getchar(); putchar(c1); putchar(c2); printf("%c%c
",c5,c6); return(0); } 程序运行后,若从键盘输入(从第一列开始) abc<回车> def<回车> 则输出结果是()。
A.cdef
B.abef
C.abcd
D.abde
正确答案:D
关键字 浏览量:次
上一篇:若变量已正确定义为float类型,要通过语句scanf(“%f%f%f”,&a,&b,&c);给
下一篇:以下程序运行时输入:25<回车>,执行后输出的结果是()。 #include <stdio.h>
相关问题
【智慧树】有以下程序:main(){intm;m=10;printf("%d\n",(--m*3/5));}程
【智慧树】若有以下程序: #include <stdio.h> void f(int *q,int n) {int i
【智慧树】若有以下程序: #include <stdio.h> int fun(int x) { if(x>10
【智慧树】若有以下程序: #include <stdio.h> int *fun(int *s,int *t) {if
【智慧树】有以下程序: #define ADD(x) x+x #include "stdio.h" int m
【智慧树】有以下程序段 typedef struct node { int data; struct node *next; }N
【智慧树】有以下程序运行后的输出结果是()。 int main(){int aa[4][4]={{1,2,3,4}, {5,6,7
【智慧树】有以下程序: #include "stdio.h" #include "string.h&