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

题目内容 (请给出正确答案)
当输入为"quert?"时,下面程序的执行结果是includemain(){ char c;c=getchar();while(c

当输入为"quert?"时,下面程序的执行结果是 #include<stdio.h> main() { char c; c=getchar(); while(c!='?') { putchar(c); c=getchar(); } }

A.quert

B.Rvfsu

C.quert?

D.rvfsu?


参考答案

更多 “ 当输入为"quert?"时,下面程序的执行结果是includemain(){ char c;c=getchar();while(c 当输入为"quert?"时,下面程序的执行结果是 #include<stdio.h> main() { char c; c=getchar(); while(c!='?') { putchar(c); c=getchar(); } }A.quertB.RvfsuC.quert?D.rvfsu? ” 相关考题
考题 当输入为"FoolSwalow"时,下面程序的执行结果是()。includemain(){char c;while(c! 当输入为"FoolSwalow"时,下面程序的执行结果是( )。 #include<stdio.h> main() {char c; while(c!='?') { c=getchar(); putchar(C); } }A.SwalowB.FoolC.Fool?D.?Swalow

考题 下面程序的执行结果是______。 main() {char str[]="quert?",*p=str; while(putchar(*p++)!='?'); }A.quertB.RvfsuC.quert?D.rvfsu?

考题 下面程序的输出结果是( )。 include main() {static char a[]="china"; char*ptr=a; whi 下面程序的输出结果是( )。 include<stdio.h> main() {static char a[]="china"; char*ptr=a; while(*ptr) {printf("%c",*ptr-32); ptr++; } }

考题 当执行以下程序时,输入1234567890,则其中while循环体将执行【 】次。include main() 当执行以下程序时,输入1234567890<回车>,则其中while循环体将执行【 】次。include<stdio.h>main(){ char ch;while((ch=getchar())=='0')prinft("");}

考题 阅读下面程序,程序执行后的结果为( )。 #include"stdio.h" main() {char*str="abcdefghijklnmopq": while(*str++!='e'); printf("%c\n",*str); }A.fB.aC.eD.a

考题 当输入为“quert?”时,下面程序的执行结果是()indudemain(){char c; c=getehar(); while 当输入为“quert?”时,下面程序的执行结果是( ) #indude<stdio.h> main() {char c; c=getehar(); while((c=getchar())!='?')putchar(++c) ; }A.QuertB.vfsuC.quert?D.rvfsu?

考题 当执行下面程序且输入a boy时,输出的结果是______。includeincludemain(){c 当执行下面程序且输入a boy时,输出的结果是______。 #include<stdio.h> #include<string.h> main() { char ss[81]="A BOY",hh[81],*pt; scanf("%s",hh); pt=strcat(ss,hh); puts(pt); printf("%s\n",hh); }A.A BOY a aB.A BOY a boy a boyC.A BOY a boy aD.A BOY a boy a boy

考题 当输入为“quert?”时,下面程序的输出结果是()。#include <stdio.h> void main() { char c; c=getchar(); while((c=getchar())!='?') putchar(c); }A.quertB.vfsuC.quert?D.rvfsu?

考题 当运行以下程序时,写出输入 6↙ 的程序运行结果: #include<stdio.h> void sub(char *a,char b) { while (*(a++)!='0') ; while (*(a-1)<b) *(a--)=*(a-1); *(a--)=b; } void main () { char s[]="97531",c; c = getchar() ; sub(s,c); puts(s) ; }