更多"以下程序的输出结果是______。 #include main( "的相关试题:
[单项选择]以下程序的输出结果是
char cchar(char ch)
if(ch>=’A’ &&ch<=’Z’) ch=ch-’A’+’a’;
return ch;
main( )
char s[]="ABC+abc=defDEF",*p=s;
while(*p) *p=cehar(*p);p++;
printf("%s/n",s);
A. abc+ABC=DEFdef
B. abe+abe=defdef
C. abcABCDEFdef
D. abcabcdefdef
[简答题]以下程序输出的结果是:
#include "stdio.h"
void main( )
{char ch[]="I love Great Wall of China!";
printf("%c",*(ch+5));
}
[填空题]有以下程序:
# include<stdio.h>
main( )
char ch1,ch2; int n1,n2
ch1=getchar( ); ch2=getchar( );
n1=ch1-’0’; n2=n1*10+(ch2-’0’);
printf("%d/n",n2);
程序运行时输入:12<回车>,执行后的输出结果是 【6】 。
[单项选择]以下程序的输出结果是
char cchar(char ch)
if(ch>=’A’&&ch<=’Z’) ch=ch-’A’+’a’;
return ch;
main ( )
char s [] = "ABC+abc=defDEF" , *p=s;
while (*p)
*p=cchar(*p);
p++;
printf "%$/n", s);
A. abc+ABC=DEFdef
B. abc+abc=defdef
C. abcABCDEFdef
D. abcabcdefdef
[填空题]有以下程序
#include <stdio. h>
main( )
char ch1,ch2; int n1,n2;
ch1=getchar( ); ch2=getchar(
n1=ch1-’0’; n2-n1*10+ (ch2-’0’);
printf("%d/n",n2);; 程序运行时输入:12<回车>,执行后输出结果是______ 。
[填空题]有以下程序
#include<stdio.h>
main( )
char ch1,ch2;int n1,n2;
ch1=getchar( );ch2=getchar( );
n1=ch1-’( )’;n2=n1*10+(ch2-’( )’);
printf("%d/n",n2);
程序运行时输入:12<回车>,执行后输出结果是 【10】 。
[填空题]以下程序运行后的输出结果是 。
# include<string.h>
main( )
char ch[]="abc",x[3][4];int i
for(i=0;i<3;i++) strcpy(x[i],ch);
for(i=0;i<3;i++)printf("%s",&x[i][i]);
printf("//n");
[单项选择]以下程序段的输出结果是()。
#include<stdio.h>
main( )
char p[][4]="ABC","DEF","GHI";
int i;
for(i=0;i<3;i++)
puts(p[i]);
A. A B C
B. A D G
C. A B C
D. A B C
[单项选择]下列程序的输出结果是 #include void main( )
{ char * str="12123434"; int x1=0,x2=0,x3=0,x4=0,i;
for(i=0;str[i]!=’/0’;i++) switch(str[i]) {
case’1’:x4++; case’2’:x3++; case’3’:x2++;
case’4’:x1++; } cout < < x1 < < ","
< < x2 < < "," < < x3 < < "," < < x4;
A. 8,6,4,1
B. 8,6,3,2
C. 8,8,4,1
D. 8,6,4,2
[填空题]以下程序运行后的输出结果是 。
#include <stdio, h>
main( )
char c1 ,c2;
for( el =’ 0’, c2 =’9’; e1<c2; c1 + + , c2 -- ) printf(" %c%c", c1, c2 );
printf("//n" );
[填空题]以下程序的输出结果是【 】。
#include
main( )
{ int i,j,sum;
for(i=3;i>=1;i--)
{ sum=0;
for(j=1;j<=i;j++) sum+=i*j;
}
printf("%d/n",sum);
}
[填空题]
以下程序运行后的输出结果是()。
#include
#include
#include
main( )
{ char *p;int i;
p=(char*)malloc(sizeof(char)*20);
strcpy(p,"welcome");
for(i=6;i>=0;i--) putchar(*(p+i));
printf("/n"); free(p);
}
[填空题]有以下程序段:
#include<stdio.h>
main( )
char ch;
ch=getchar( );
switch(ch)
case 97: printf("%c", ’A’);
case 66: printf("%c", ’B’);
default: printf("%c/n", ’C’);
如果从键盘输入字母a,输出结果为______。
[单项选择]下列程序的输出结果是
#include
void main( )
char * str="12123434";
int x1=0,x2=0,x3=0,x4=0,i;
for(i=0;str[i]!=’/0’;i++)
switch(str[i])
case’1’:x4++;
case’2’:x3++;
case’3’:x2++;
case’4’:x1++;
cout < < x1 < < "," < < x2 < < "," < < x3 < < "," < < x4;
A. 8,6,4,1
B. 8,6,3,2
C. 8,8,4,1
D. 8,6,4,2