网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
下面程序在屏幕上的输出是________。 #include <stdio.h> int main() { printf(”ab\b\b c”); return 0; } A)ab\b\b c B)a c C)abc D)ab c
参考答案和解析
20 0 20 0
更多 “下面程序在屏幕上的输出是________。 #include <stdio.h> int main() { printf(”ab\b\b c”); return 0; } A)ab\b\b c B)a c C)abc D)ab c” 相关考题
考题
阅读下面程序段,则执行后输出的结果是#include "stdio.h"main(){ char fun(char,int);char a=′A′;int b=13;a=fun(a,b);putchar(a);}char fun(char a,int b){char k;k=a+b;return k;}A.AB.MC.ND.L
考题
下列程序的运行结果为includevoid abc(char*str){int a,b;for(a=b=0;str[a]!='\0';a++
下列程序的运行结果为 #include<stdio.h> void abc(char*str) { int a,b; for(a=b=0;str[a]!='\0';a++) if(str[a]!='c') str[b++]=str[a]; str[b]='\0';} void main() { char str[]="abcdef"; abc(str); printf("str[])=%s",str);}A.str[]=abdefB.str[]=abcdefC.str[]=aD.str[]=ab
考题
有以下程序:includeincludemain() {char c[6];int i=0;for(;j
有以下程序:#include<stdio.h>#include<stdio.h>main() { char c[6]; int i=0; for(;j<6;c[i]=getchar(),i++); for(i=0;i<6;i++)putchar(c[i]); printf("\n");}如果从键盘上输入:ab<回车>c<回车>def<回车>则输出结果为 ______。A.a b c d e fB.a b c dC.ab c dD.abcdef
考题
有以下程序:include main(){ inta=1,b=2,c=3,x; x=(ab)c; printf("%d\n",x);}程
有以下程序: #include <stdio.h> main() { int a=1,b=2,c=3,x; x=(ab)c; printf("%d\n",x); } 程序的运行结果是( )。A.0B.1C.2D.3
考题
以下C程序段的输出结果是(30)。 include void abc(char *str){ int a, b;
以下C程序段的输出结果是(30)。 #include <stdio. h> void abc(char *str){ int a, b; for(a=b=0;str[a]!='\O';a++)if(str[a]!='c') str[b++]=str[a]; str[b]='\O'; } void main(){ char str[]="abcdef"; abc(str); printf("str[]=%s",str); }A.str[]=aB.str[]=abC.str[]=abdefD.str[]=abcdef
考题
有以下程序:includemain(){char c[6]; int i=0; for(;i
有以下程序: #include<stdio.h> main(){ char c[6]; int i=0; for(;i<6;c[i]=getchar(),i++); for(i=O;i<6;i++)putchar(c[i]); printf("\n"); } 如果从键盘上输入: ab<回车> c<回车> def<回车> 则输出结果为_______。A.aB.aC.abD.abcdef b b c c c d d d e f
考题
下列程序的输出结果是()。 include int b=2; int fune(int*a) {b+=*a;return b;} main(
下列程序的输出结果是( )。 #include<stdio.h> int b=2; int fune(int*a) { b+=*a;return b;} main() { int a=1,t=2; t+=func(a); printf("%d\n",t); }A.4B.5C.6D.8
考题
下列程序的输出结果是()。 include int fun(int x) {int a; if(x==0‖x==1) return 3;
下列程序的输出结果是( )。#include<stdio.h>int fun(int x){ int a;if(x==0‖x==1)return 3;elsea=x-fun(x-2) ;return a;}void main(){ printf("%d",fun(7) );}A.2B.8C.9D.5
考题
有以下程序:includemain(){char c[6];int i=0;for(;i
有以下程序: #include<stdio.h> main(){ char c[6]; int i=0; for(;i<6;c[i]=getchar(),i++); for(i=0;i<6; i++)putchar(c[i]); printf("\n"); } 如果从键盘上输入: ab<回车> c<回车> def<回车> 则输出结果为______。A.a b c d e fB.a b c dC.ab c dD.abcdef
考题
下列程序的输出结果是()。 include int fun(int x) {int a;if(x==0‖x==1) return 3;els
下列程序的输出结果是( )。 #include<stdio.h> int fun(int x) { int a; if(x==0‖x==1) return 3; else a=x-fun(x-2); return a; } void main() { printf("%d",fun(7)); }A.2B.8C.9D.5
考题
下述程序的输出结果是()。include int fun(int a){intb=0;staticintc=3;b++,c++;return
下述程序的输出结果是( )。 # include <stdio.h> int fun( int a) { int b=0; static int c=3; b++,c++; return a+b+c; } void main() { int x=2,i; for(i=1;i<3;i++) printf("%d",fun(x)); }A.56B.67C.78D.89
考题
有以下程序:includeint a=2;int f(int *a){return (*a) ++;}main(){ int s=0;{ int a=
有以下程序: #include <stdio.h> int a=2; int f(int *a) { return (*a) ++;} main() { int s=0; { int a=5; s+=f(a); } s+=f(a); printf("%d\n",s) } 执行后的输出结果是( )。A.10B.9C.7D.8
考题
以下程序运行后的输出结果是( )。 include main() { int x=20; printf("%d", 0
以下程序运行后的输出结果是( )。include<stdio.h>main(){ int x=20;printf("%d", 0<x<20);printf("%d\n", 0<x x<20);}
考题
有以下程序 include int fun(int a, int b) { if(b==0) return a;
有以下程序 #include <stdio.h> int fun(int a, int b) { if(b==0) return a; else return(fun(-a,-b)); } main() { printf("%d\n",fun(4,2)); } 程序的运行结果是______。A.1B.2C.3D.4
考题
下述程序的输出结果是()。include int f(n)int n;{if(n==0 | | n==1)return 3;return n
下述程序的输出结果是( )。 #include <stdio.h> int f(n) int n; { if(n==0 | | n==1) return 3; return n-f(n-2); } void main() {printf("\n%d",f(10)); }A.3B.8C.9D.10
考题
下面程序的输出结果是()。includemain(){char a[]={'a','b','c','d','f','g'},*p;p=a;p
下面程序的输出结果是( )。 #include<stdio.h> main() {char a[]={'a','b','c','d','f','g'},*p; p=a; printf("%c\n",*p+4); }A.aB.bC.eD.f
考题
下列程序执行输出的结果是()。include f(int a){ int b=0;stoic c=3;a=c++;b++;return(
下列程序执行输出的结果是( )。 #include <stdio.h> f(int a) { int b=0; stoic c=3; a=c++;b++; return(a); } main() { int a=2,i,k; for(i=0;i<2;i++) k=f(a++); printf("%d\n",k); }A.3B.4C.5D.6
考题
下面程序的输出结果是 #include stdio.h main(){ int i=2; printf("%d",f(i,i+1) ); } int f(int a,int b) { int c; c=a; if(ab) c=1; else if(a==b) c=0; else c=-1; return(c);}A.-1 B.0 C.1 D.2
考题
下列程序的输出结果是()。includeint fun(int x){ int a;if(x==0||x=1)return 3;elsea=
下列程序的输出结果是( )。#include<stdio.h>int fun(int x){ int a; if(x==0||x=1) return 3; else a=x-fun(x-2); return a;}void main(){ printf("%d",fun(7));}A.2B.8C.9D.5
考题
下面程序段的输出为( )。 include "stdio.h" main { printf("%d\n",122); }A.0SXB
下面程序段的输出为( )。 #include "stdio.h" main { printf("%d\n",122); }A.0B.47C.48D.24
考题
下面程序的输出结果是______。includemain(){char ch[7]={"12ab56"}; int i,s=0; for(i
下面程序的输出结果是______。 #include<stdio.h> main() { char ch[7]={"12ab56"}; int i,s=0; for(i=0;ch[i]>='0'ch[i]<='9';i+=2) s=10*s+ch[i]-'0'; printf("%d\n",s); }A.1B.1256C.12ab56D.1 2 5 6
考题
下列程序的输出结果是( )。 #includestdio.h main( ) { int a=2,b=3,P; p=f(a,b); printf(”%d”,p); } int f(a,b) { int c; if(ab)c=1; else if(a==b)c=0; else c=-l; return(c); }A.-lB.0C.1D.2
考题
下列程序的输出结果是()。 include main() {int a=4; printf("%d\n",(a+=a-=a*A) ); }A
下列程序的输出结果是( )。#include<stdio.h>main(){ int a=4;printf("%d\n",(a+=a-=a*A) );}A.-8B.14C.0D.-24
考题
下列程序的输出结果是()。 include int fun(int x) {int p; if(x==0‖x=1) return 3; e
下列程序的输出结果是( )。#include<stdio.h>int fun(int x){ int p;if(x==0‖x=1)return 3;elsep=x-fun(x-2) ;return p;}void main(){ printf("\n%d",fun(5) );}A.5B.3C.7D.1
考题
给出下面程序的输出结果includeiostreamusing namespace std;int min(int a,int b){if(ab)return a;else return b;return 0;}void main(){coutmin(1,min(2,3))endl;}
考题
单选题有以下程序:#include main(){ int a=3; int b=3; printf(%d, ab);}程序运行后的输出结果是( )。A
6B
1C
0D
3
热门标签
最新试卷