char s[80],*sp="HELLO!";sp=strcpy(s,sp);s[0]='h';puts(sp);运行结果:________
char s[80],*sp="HELLO!";sp=strcpy(s,sp);s[0]='h';puts(sp);运行结果:________
下面代码段的执行结果是 int i, s = 0 ; int a[ ] = { 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 }; for ( i = 0 ; i < a.length ; i ++ ) if ( a[i]%3 = = 0 ) s += a[i] ; System.out.println("s="+s);
下面代码段的执行结果是 int i, s = 0 ; int a[ ] = { 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 }; for ( i = 0 ; i < a.length ; i ++ ) if ( a[i]%3 = = 0 ) s += a[i] ; System.out.println("s="+s);
以下程序的功能是将字符串s中的数字字符放入d数组中,最后输出d中的字符串。例如,输入字符串:abc123edf456gh,执行程序后输出:123456。#include “stdio.h”#include “string.h”main(){ char s[80], d[80]; int i,j;gets(s);for(i=j=0;s[i]!='\0';i++)if(s[i]>=’0’______s[i]<=’9’) { d[j]=s[i]; j++; }d[j]= ______;puts(d);}
以下程序的功能是将字符串s中的数字字符放入d数组中,最后输出d中的字符串。例如,输入字符串:abc123edf456gh,执行程序后输出:123456。#include “stdio.h”#include “string.h”main(){ char s[80], d[80]; int i,j;gets(s);for(i=j=0;s[i]!='\0';i++)if(s[i]>=’0’______s[i]<=’9’) { d[j]=s[i]; j++; }d[j]= ______;puts(d);}
中国通化机场三字代码()。 A: TNA B: TNE C: TNG D: TNH
中国通化机场三字代码()。 A: TNA B: TNE C: TNG D: TNH
以下程序段的运行结果是eXAMPLE( )。 char s[80], *t='EXAMPLE'; t=strcpy(s, t); s[0]='e'; puts(t);
以下程序段的运行结果是eXAMPLE( )。 char s[80], *t='EXAMPLE'; t=strcpy(s, t); s[0]='e'; puts(t);