ImageVerifierCode 换一换
格式:DOC , 页数:14 ,大小:111KB ,
资源ID:3598718      下载积分:5 文钱
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,省得不是一点点
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.wenke99.com/d-3598718.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(C语言考试改错填空编程题题库·.doc)为本站会员(坚持)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

C语言考试改错填空编程题题库·.doc

1、 1改错题1、在考生文件夹下,给定程序 MODI.C 的功能是:从低位开始取出长整型变量 s 中奇数位上的数,依次构成一个新数放在 t 中。例如,当 s 中的数为:7654321时,t 中的数为:7531。请修改并运行该程序,然后将源程序文件 MODI.C 上传。#include #include main( ) long s, t, sl=10;clrscr();printf(“nPlease enter s:“); scanf(“%ld“, /*found*/t = s / 10; s%10while ( s 0) s = s/100;t = s%10 * sl + t;/*found*/

2、sl = sl*100 ;printf(“The result is: %ldn“, t);2、在考生文件夹下,给定程序 MODI.C 的功能是:求一维数组 a 中的值为偶数的元素之和。例如,当一维数组 a 中的元素为:10,4,2,7,3,12,5,34,5,9 ,程序的输出应为:The result is: 62#include #include main() int a10=10,4,2,7,3,12,5,34,5,9,i,s;clrscr();s = 0;for ( i=0; i#include sum ( int arr ,int n ) int i,s;clrscr();2s =

3、0;for ( i=0; i#include main() int a33=4,4,34,7,3,12,5,6,5,i,j,max;clrscr();max = a00;for ( i=0; i aij)/*found*/max = aij;printf(“The max is: %dn“, max);5、在考生文件夹下,给定程序 MODI.C 的功能是:求一维数组 a 中的最大元素及其下标。例如,当一维数组 a 中的元素为:1,4,2,7,3,12,5,34,5,9,程序的输出应为:The max is: 34,pos is: 7 。#include #include main() int

4、a10=1,4,2,7,3,12,5,34,5,9,i,max,pos;clrscr();max = a0;pos = 0;for ( i=1; i ai)max = ai;/*found*/i = pos;printf(“The max is: %d ,pos is: %dn“, max , pos);6、在考生文件夹下,给定程序 MODI.C 的功能是:输出 11000 之间的所有完数,并输出每个完数的所有因子。所谓完数,就是指一个正整数,它的各因数之和等于其自身。例如,28=1+2+4+7+14,28 是一个完数。#include #include #include #include m

5、ain() int i,j, t;clrscr();for(i=1;i#include #include main() char s80, t80;/*found*/4int i;clrscr();printf(“nPlease enter string s:“); scanf(“%s“, s);sl = strlen(s);for (i=0; i#include #include main() char s80,t80;int i, sl;clrscr();printf(“nPlease enter string s:“); scanf(“%s“, s);sl = strlen(s);/*f

6、ound*/for( i=0; i#include main( ) /*found*/int a, b,c;5clrscr();printf ( “Enter a scanf (“%lf%lf“, /*found*/c= sqr(a)+sqr(b) ;printf (“c= %f n“, c); 10、在考生文件夹下,给定程序 MODI.C 的功能是:输出 200300 之间的所有素数,要求每行输出 8 个素数。#include #include #include #include main() int m,j,n=0,k;clrscr();for(m=200;mk) if(n%8=0) pr

7、intf(“n“);/*found*/printf(“%6d“,j);n+;11、输出 100200 之间既不能被 3 整除也不能被 7 整除的整数并统计这些整数的个数,要求每行输出 8 个数。#include #include #include #include main() int i;/*found*/int n;clrscr(); for(i=100;i#include #include #include main() int i,j,k;clrscr();/*found*/for(i=1;i#include #include #include main()/*found*/ long

8、 int s,t;int n;s=0;t=1;clrscr();/*found*/for(n=1;n#include main() int arr10=11,4,2,7,3,12,5,34,5,9,i;int s=0;clrscr();/*found*/for ( i=1; i#include double average( int arr , int n ) int k=0,i; double s;s = 0;for ( i=0 ;i#define M 11 main() int aM,i;clrscr();for(i=0;i#include #include long int fun(in

9、t x)long int s=1; int i;for (i=1;i#include main( )int num,k;clrscr() ;/*found*/_(1)_; k=0printf(“Please enter a number:“) ;scanf(“%d“,do/*found*/k=_(2)_ ; k+num%10num/=10; while(num) ;printf(“n%dn“,k) ;106、从键盘上输入一个正整数 n,计算并输出 n 的阶乘。例如,如果从键盘上输入 8,程序的运行结果应为:The result is: 40320。#include #include #include long fac( int n ) int i;long t=1;for( i=2;i#include #include long int fun(int x ,int y )

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。