欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    C语言程序填空题及答案(共8页).doc

    • 资源ID:14482226       资源大小:221.50KB        全文页数:8页
    • 资源格式: DOC        下载积分:20金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要20金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    C语言程序填空题及答案(共8页).doc

    精选优质文档-倾情为你奉上 程序填空题1、#include <stdio.h>void main() int n,k=0; scanf("%d",&n);while( _1_ ) / 1)n 2) n!=0; k+; _2_; n=n/10 printf("%dn",k);2、#include <stdio.h>#include <math.h>#define f(x) x*x-5*x+sin(x)void main() int x; float max; _1_ / max=f(1); for(x=2;x<=10;x+) _2_ / if(f(i)>max) max=f(i); printf("%fn",max);3、#include <stdio.h>void main() char c; c=getchar(); if(_1_) / c>='a' && c<'v' c=c+5; else if (c>='v' && c<='z') _2_ /c=c-21; putchar(c);4、#include <stdio.h>void Dec2Bin(int m) int bin32,j; for(j=0;m!=0;j+) binj= _1_; / m%2 m=m/2; for(;j!=0;j-) printf("%d", _2_ ); / binj-1void main() int n; scanf("%d",&n); Dec2Bin(n);5、#include <stdio.h> #include <math.h> void main() int n,s=0; scanf("%d",&n); _ 1 _ /n=(n>0?n:-n) ; 2)n=fabs(n); while(n!=0) _ 2 _ / s=s+n%10; n=n/10; printf("%dn",s); 6、/#include <stdio.h>void swap(_1_) /int *pa , int *pb /*交换两个数的位置*/ int temp; temp = *pa; *pa = *pb; *pb = temp;void main() int a,b,c,temp; scanf("%d%d%d",&a,&b,&c); if(a>b) swap(&a,&b); if(b>c) swap(&b,&c); if(_2_) / a>b swap(&a,&b); printf("%d,%d,%d",a,b,c);7、#include <stdio.h>_1_ /long f(int n);void main() printf("%ldn",f(30);long f(int n) if( _2_ ) / n=1|n=2 return 1; else return f(n-1)+f(n-2);8、#include <stdio.h>void main() char s80; int i,j; gets(s); for(i=j=0;_1_;i+) / si!=0 if(si != 'c') sj=si; _2_ /j+; sj='0' puts(s);9、#include <stdio.h>struct STUDENT char name16; int math; int english; int computer; int average;void GetAverage(struct STUDENT *pst) /* 计算平均成绩 */ int sum=0; sum = _1_; /sum+ pst->math+ pst->English+ pst->computer pst->average = sum/3;void main() int i; struct STUDENT st4="Jessica",98,95,90,"Mike",80,80,90, "Linda",87,76,70,"Peter",90,100,99; for(i=0;i<4;i+) GetAverage(_2_); / &sti printf("NametMathtEnglishtComputAveragen"); for(i=0;i<4;i+) printf("%st%dt%dt%dt%dn",sti.name,sti.math,sti.english, sti.computer,sti.average); 10、#include <stdio.h>#include <math.h>long f(long n) long m,y=0; m=fabs(n); while(m!=0) y=y*10+m%10; _1_ / m=m/10; if(n>=0) return y; else _2_ / return ( -y);void main() printf("%ldt",f(12345); printf("%ldn",f(-34567);11、#include <stdio.h>float f(float,float*,int);void main() float b5=1.1,2.2,3.3,4.4,5.5; printf("%fn",f(1.7,b,5);float f( _1_ ) / float x,float a , int n float y=a0,t=1; int i; for(i=1;i<n;i+) t=t*x; y=y+ai*t; _2_ / return y 12、#include <stdio.h>#include <string.h>#include <ctype.h>void f(char *s) int i=0; while(si!='0') if(isdigit(si) _1_(s+i,s+i+1); / strcpy _2_ i+; / elsevoid main() char str80; gets(str); f(str); puts(str);13、#include <stdio.h>#include <ctype.h>void main() char a80; int n3=0,i; gets(a); _1_ /for(i=0;ai!=0;i+) if (tolower(ai)>='a' && tolower(ai)<='z') /*统计字母个数*/ n0+; else if (_2_) /*统计数字个数*/ ai>='0' && ai<='9'n1+; else n2+; for(i=0;i<3;i+) printf("%dn",ni); 14、#include <stdio.h>#include<math.h>void main()int i,a,b,c;for(i=100;i<=999;i+)a=i/100;_1_ / b=i%100/10;c=i%10;if (_2_) /i=a*a*a+b*b*b+c*c*cprintf("%d is a Armstrong number!n",i);15、#include <stdio.h>void main() int a10,b10,i; printf("nInput 10 numbers: "); for (i=0; i<10;i+) /* 数组输入 */ scanf("%d", &ai); for (i=1; i<10; i+) bi=_1_; /* 计算b数组中的元素 */ /ai+ai-1 for (i=1; i<10; i+) printf("%3d",bi); if (_2_) printf("n"); /* 每行打印3个数据 */ /i%3=0 专心-专注-专业

    注意事项

    本文(C语言程序填空题及答案(共8页).doc)为本站会员(飞****2)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开