- 1、本文档共95页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
首 页;例题1 填空题;
#include stdio.h
#include string.h
#include conio.h
char 【1】fun(char tt[])
{
int i;
for(i=0;tt[i];i++)
{
if((tt[i]=A)(tt[i]= 【2】))
tt[i]+=32;
}
return(tt);
}
main()
{
char tt[81];
printf(\nPlease enter a string: );
gets(tt);
printf(\nThe result string is: \n%s,fun(【3】));
}
;例题2 填空题;
#include stdio.h
#define SIZE 20
fun (double *s,double *w)
{ int k,i; double sum;
for(k=2,i=0;iSIZE;i++)
{s[i]=k;k+=2;}
sum=0.0;
for(k=0,i=0;iSIZE;i++)
{sum+=s[i];
if((i+1)【1】5==0)
{w[k]=sum/5; sum=0;k++;}
}
【2】 k;}
main()
{ double a[SIZE],b[SIZE/5];
int i, k;
k=fun(a,b);
printf(The original data:\n);
for(i=0;iSIZE;i++)
{ if(i%5==0) printf(\n);
printf(%4.0f,a[i]); }
printf(\n\nThe result:\n);
for(i=0;ik;i++) printf(%6.2f,【3】);
printf(\n\n);}
;例题3 填空题;
#include stdio.h
#include ctype.h
#include conio.h
void fun(char *s)
{while(【1】)
{ if(*s=A*s=Z||*s=a*s=z)
{if(*s==Z) *s=A;
else if(*s==z) *s=a;
else *s+=【2】;
}
【3】;
}
}
main()
{ char s[80];
printf(\n Enter a string with length80:\n\n); gets (s);
printf(\n The string:\n\n); puts(s);
fun(s);
printf(\n\n The Cords :\n\n); puts(s);
}
;例题4 填空题;
#include stdio.h
#include conio.h
void fun(long s,long *t)
{int d;
long s1=1;
*t=0;
while(s0)
{ d=s【1】10;
if(d%2!=0)
{*t=d*s1+*t;
s1*=【2】;
}
s/=【3】;
}
}
main()
{long s, t;
clrscr();
printf(\nPlease enter s: ); scanf(%ld,s);
fun(s,t);
printf(The result is :%ld\n,t);}
;例题5 填空题;
#include conio.h
#include ctype.h
#include stdio.h
#include string.h
void fun(char *p)
{ int k=0;
for ( ;*p;p++)
if (k)
{ if (*p== )
{
【1】;
【2】=toupper(*(p-1)); } }
else
k=1;}
main()
{char chrstr[64]; int d;
printf(\nPlease enter an English sentence within 63 letters: );
gets(chrstr);
d=strlen(chrstr);
chrstr[d]= ;
chrstr[d+
文档评论(0)