设有以下程序段 char a[20]; scanf("%s", a); printf("%s", a); 运行时若输入字符串"Wang wei",其输出结果是()。A.WangB.weiC.Wang weiD.程序错误
设有以下程序段 char a[20]; scanf("%s", a); printf("%s", a); 运行时若输入字符串"Wang wei",其输出结果是()。
A.Wang
B.wei
C.Wang wei
D.程序错误
参考答案和解析
B
相关考题:
(29)有以下程序#include stdio.hmain(){ int s;scanf("%d",s);while(s0){ switch(s){ case1:printf("%d",s+5);case2:printf("%d",s+4); break;case3:printf("%d",s+3);default:printf("%d",s+1);break;}scanf("%d",s);}}运行时,若输入1 2 3 4 5 0回车,则输出结果是A)6566456B)66656C)66666D)6666656
有以下程序#include stdio.hmain(){ char a[20]="How are you?",b[20];scanf("%s",b); printf("%s %s\n",a,b);}程序运行时从键盘输入: How are you? 回车 则输出结果为 【 1 3 】 。
有以下程序:includemain(){char *p,*q;p=(char*)malloc(sizeof(char)*20);q=p;scanf( 有以下程序: #include <stdlib.h> main() { char *p,*q; p=(char*)malloc(sizeof(char)*20); q=p; scanf("%s%s",p,q); ptintf("%s%s\n",p,q); } 若从键盘输入abc def<回车>,则输出的结果是( )。A.def defB.abc defC.abc dD.d d
设已执行预编译命令include,以下程序段的输出结果是char s[]="an apple";printf("%d\ 设已执行预编译命令#include<string.h>,以下程序段的输出结果是 char s[]=" an apple" ; printf("%d\n",strlen(s));A.7B.8C.9D.10
有以下程序: includemain(){char*p,*q; p=(char *)malloc(sizeof(char)* 20);q=p; sca 有以下程序: # include<stdio.h> main() { char*p,*q; p=(char *)malloc(sizeof(char)* 20);q=p; scanf("%s %s",p,q);printf("%s %s\n",p,q); } 若从键盘输入;abc def<回车>,则输出结果是 ______。A.def defB.abc defC.abe dD.d d
执行下列程序时输入:123456789,输出结果是()main(){ char s[100]int c,i;scan 执行下列程序时输入:123<空格>456<空格>789<回车>,输出结果是( ) main() { char s[100] int c,i; scanf("%c",C) ; scanf("%d",i); scanf("%s",s); printf("%c,%d,%s\n",c,i,s); }A.1,456,789B.1,23,456C.1,23,456,789D.123,456,789
有以下程序jncludestdio.hmain( ){char a[20]=“How ale you?”,b[20];scanf(“%s”,B);pfinff(“%s%s\n”,a,B);}程序运行时从键盘输入:How are you?回车则输出结果为【 】。
以下程序运行后输入:3,abcde回车,则输出结果是【 】include move(char *str, 以下程序运行后输入:3,abcde回车,则输出结果是【 】include <string.h>move(char *str, int n){ char temp; int i;temp=str[n-1];for(i=n-1;i>0;i--) str[i]=str[i-1];str[0]=temp;}main( ){ char s[50]; int n, i, z;scanf("%d,%s",n,s);z=strlen(s);for(i=1; i<=n; i++) move(s, z);printf("%s\n",s);}
有以下程序includemain(){ char*p,*q;p=(char *)malloc(sizeof(char)*20);q=p;scanf( 有以下程序 #include<stdlib.h> main() { char*p,*q; p=(char *)malloc(sizeof(char)*20);q=p; scanf(“%s%s”,p,q);printf(“%s%s\n”,p,q); } 若从键盘输入:abc def<回车>,则输出结果是A.def defB.abc defC.abc dD.d d
有以下程序include main(){ char *p,*q;p=(char*)malloc(sizeof(char)*20);q=p;scanf 有以下程序 #include <stdlib.h> main() { char *p,*q; p=(char*)malloc(sizeof(char)*20); q=p; scanf("%s %s",p,q); printf("%s %s\n",p,q); } 若从键盘输入:abc def<回车>, 则输出结果是A.def defB.abc delC.abc dD.d d
有以下程序 #includestdio.h main( ) {char a[3O],b[30]; scanf("%S",a); gets(b); printf("%s\n%s\\n",a,b); } 程序运行时若输入: how are you? I am fine回车 则输出结果是( )。A.how are you? I am fineB.how are you?I am fineC.how are you?I am fineD.how are you?
有以下程序: #includestdio.h main( ) { char a[20],b[20],c[20]; scanf("%s%s",a,b); gets(c); printf("%S%S%s\n",a,b,c); } 程序运行时从第一列开始输入: This is a cat!回车 则输出结果是( )。A.Thisisacat!B.Thisis aC.Thisis a cat!D.Thisisa cat !
有以下程序#include stdio.hmain( ){ char a[20], b[20], c[20];scanf("%s%s", a,b);gets(c);printf("%s%s%s\n", a,b,c);}程序运行时从第一列开始输入:This is a cat!回车则输出结果是A) Thisisacat!B) Thisis aC)'Thisis a cat!D) Thisisa cat!
运行下面的程序,输入字符串Microsoft Visual Studio,则程序的执行结果是()。includemai 运行下面的程序,输入字符串Microsoft Visual Studio,则程序的执行结果是( )。 #include<stdio.h> main() {char Chr[20]; scanf("%s",Chr); printf("%s\n”,Chr); }A.Microsoft Visua1 StudioB.MC.MicrosoftD.MicrosoflVisualStudio
以下程序:includemain(){char str[10];scanf("%s",str);printf("%s\n",str);}运 以下程序: #include<stdio.h> main() {char str[10]; scanf("%s",str); printf("%s\n",str); } 运行上面的程序,输入字符串how are you,则程序的执行结果是( )。A.howB.how are youC.hD.howareyou
有以下程序#includestdio.hmain(){int s;scanf(“%d”,&s);while(s0){switch(s){case 1;printf(“%d”,s+5);case 2:printf(“%d”,s+4);break;case 3:printf(“%d”。s+3);default:printf(“%d”,s+1);break;}seanf(“%d”,&s);}}运行时,若输入1 2 3 4 5 O回车,则输出结果是A.6566456B.66656C.66666D.6666656
有以下程序includestdio.hmain(){char a[30],b[30];scanf(“%s”,a);gets(b);printf(“%s\n%s\n”,a,b);}程序运行时若输入:how are you? I am fine回车则输出结果是A.how are you? I am fineB.how are you? 1 am fineC.how are you? I am fineD.how are you?
执行下列程序时输入123456789,输出结果是 main() {cha 执行下列程序时输入123<空格>456<空格>789<回车>,输出结果是 main() {char s[100]; int c. i; scanf("%c", c); scanf("%d", i); scan{("%s", s); printf("%c, %d, %s\n", c,i,s); }A.123,456,789B.1,456.789C.1,23,456,789D.1,23,456
设有如下程序: #include'string.h" main() { static char s1[20],s2[20]; scanf("%s",s1);scanf("%s",s2); if(strcmp(s1,s2)) printf("@"); else printf("$"); printf("%d\n",strlen(strcat(s1,s2))); } 如果从键盘上输入name1<回车>name2<回车>,则程序运行后的输出结果是( )。A.$9B.@11C.$10D.@10
执行下列程序时输入:123456789输出结果是main(){char s[100];int c,i; scanf( 执行下列程序时输入:123<空格>456<空格>789<回车>输出结果是 main() { char s[100];int c,i; scanf("%c",c);scanf("%d",i);scanf("%s",s); printf("%c,%d,%s\n",c,i,s);}A.123,456,789B.1,456,789C.1,23,456,789D.1,23,456
有以下程序#includemain(){ int s;scanf(%d,s);while(s0){ switch(s){ case1:printf(%d,s+5);case2:printf(%d,s+4); break;case3:printf(%d,s+3);default:printf(%d,s+1);break;}scanf(%d,s);}}运行时,若输入1 2 3 4 5 0回车,则输出结果是A.6566456B.66656C.66666D.6666656
有以下程序: #includestdio.h, main( ) {int S; scanf("%d",s); while(sO) {switch(s) {case l:printf("%d",s+5); case 2:printf("%d",s+4);break; case 3:printf("%d",s+3); default:("%d",s+1);break; } scanf("%d",s); } } 运行时,若输入1 2 3 4 5 0回车,由输出结果是( )。A.6566456B.66656C.66666D.6666656
有以下程序: include main( ) { char *p ,* q; p=(char * )malloc(sizeof(char 有以下程序: #include<stdlib.h> main( ) { char *p ,* q; p=(char * )malloc(sizeof(char) * 20);q=p; scanf("%s%s",p,q); printf("%s%s\n",p,q); } 若从键盘输入:abc def<回车>,则输出结果是A.def defB.abc defC.abc dD.d d
设已执行预编译命令include,以下程序段的输出结果是()。char s[]="an apple";printf(" 设已执行预编译命令#include<string.h>,以下程序段的输出结果是( )。 char s[]=" an apple" ; printf(" %d\n" ,strlen(s));A.7B.8C.9D.10
当运行以下程序时,输入abcd,程序的输出结果是:( )。insert(char str[]){int i;i=strlen(str);while(i>0){str[2*i]=str[i];str[2*i-1]='*';i--;}printf("%s\n",str);}main(){char str[40];scanf("%s",str);insert(str);}
单选题有以下程序:#includemain(){ ints; scanf(%d,s); while(s0) { switch(s) { case1:printf(%d,s+5); case2:printf(%d,s+4);break; case3:printf(%d,s+3); default:printf(%d,s+1);break; } scanf(%d,s); }}运行时,若输入123450回车,则输出结果是( )。A6566456B66656C66666D6666656
单选题有以下程序:#includemain(){ chara[30],b[30]; scanf(%s,a); gets(b); printf(%s%s,a,b);}程序运行时若输入:howareyou?Iamfine回车则输出结果是( )。Ahow are you? 换行I am fineBhow换行 are you? I am fineChow are you? I am fineDhow are you?