收藏 分享(赏)

C语言习题目.doc

上传人:kpmy5893 文档编号:9362532 上传时间:2019-08-03 格式:DOC 页数:30 大小:83.50KB
下载 相关 举报
C语言习题目.doc_第1页
第1页 / 共30页
C语言习题目.doc_第2页
第2页 / 共30页
C语言习题目.doc_第3页
第3页 / 共30页
C语言习题目.doc_第4页
第4页 / 共30页
C语言习题目.doc_第5页
第5页 / 共30页
点击查看更多>>
资源描述

1、POJ 上做做 ACM 的题语言的学习基础,100 个经典的算法C 语言的学习要从基础开始,这里是 100 个经典的算法C 语言的学习要从基础开始,这里是 100 个经典的算法题目:古典问题:有一对兔子,从出生后第 3 个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?_程序分析:兔子的规律为数列 1,1,2,3,5,8,13,21_程序源代码:main()long f1,f2;int i;f1=f2=1;for(i=1;ik,但 n 能被 k 整除,则应打印出 k 的值,并用 n 除以 k 的商,作为新的正整数你 n,重复执行第一步。

2、(3)如果 n 不能被 k 整除,则用 k+1 作为 k 的值,重复执行第一步。_程序源代码:/* zheng int is divided yinshu*/main()int n,i;printf(“nplease input a number:n“);scanf(“%d“,printf(“%d=“,n);for(i=2;i=90 分的同学用 A 表示,60-89 分之间的用 B 表示,60 分以下的用 C 表示。_程序分析:(ab)?a:b 这是条件运算符的基本例子。_程序源代码:main()int score;char grade;printf(“please input a score

3、n“);scanf(“%d“,grade=score=90?Ascore=60?B:C);printf(“%d belongs to %c“,score,grade); 题目:输入两个正整数 m 和 n,求其最大公约数和最小公倍数。_程序分析:利用辗除法。_程序源代码:main()int a,b,num1,num2,temp;printf(“please input two numbers:n“);scanf(“%d,%d“,if(num1 temp=num1;num1=num2; num2=temp;a=num1;b=num2;while(b!=0)/*利用辗除法,直到 b 为 0 为止*/

4、temp=a%b;a=b;b=temp;printf(“gongyueshu:%dn“,a);printf(“gongbeishu:%dn“,num1*num2/a); 题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。_程序分析:利用 while 语句,条件为输入的字符不为n._程序源代码:#include “stdio.h“main()char c;int letters=0,space=0,digit=0,others=0;printf(“please input some charactersn“);while(c=getchar()!=n)if(c=aprint

5、f(“请输入要求的数:“);scanf(“%f“,x0=a/2;x1=(x0+a/x0)/2;while(fabs(x1-x0)=Epsilon)x0=x1;x1=(x0+a/x0)/2;printf(“%f 的平方根:%f.5n“,x1); /* 上题的另一种算法 */#define Epsilon 1.0E-6 /*控制解的精度*/ #include #include main() float num,pre,this; do scanf(“%f“,/*输入要求平方根的数*/ while(numEpsilon);/*用解的精度,控制循环次数*/ printf(“the root is %f

6、“,this); 用牛顿迭代法 求方程 2*x*x*x-4*x*x+3*x-6 的根/* 牛顿迭代法 */#define Epsilon 1.0E-6 /*控制解的精度*/#includemain() float x1,x0=1.5;x1=x0-(2*x0*x0*x0-4*x0*x0+3*x0-6)/(6*x0*x0-8*x0+3);while(fabs(x1-x0=Epsilon) x0=x1;x1=x0-(2*x0*x0*x0-4*x0*x0+3*x0-6)/(6*x0*x0-8*x0+3);printf(“方程的根为%fn“,x1); 用二分法求上题/* 二分法 */#define Ep

7、silon 1.0E-5 /*控制解的精度*/#includemain() folat x1,x2,x0,f1,f2,f0;x0=(x1+x2)/2;f0=2*x0*x0*x0-4*x0*x0+3*x0-6; /* 求中点的函数值 */while(fabs(f0)=Epsilon) if(f0*f1void main()char letter;printf(“please input the first letter of somedayn“);while (letter=getch()!=Y) /*当所按字母为 Y 时才结束*/ switch (letter)case S:printf(“p

8、lease input second lettern“);if(letter=getch()=a)printf(“saturdayn“);else if (letter=getch()=u)printf(“sundayn“);else printf(“data errorn“);break;case F:printf(“fridayn“);break;case M:printf(“mondayn“);break;case T:printf(“please input second lettern“);if(letter=getch()=u)printf(“tuesdayn“);else if

9、(letter=getch()=h)printf(“thursdayn“);else printf(“data errorn“);break;case W:printf(“wednesdayn“);break;default: printf(“data errorn“); 题目:Press any key to change color, do you want to try it. Please hurry up!_程序源代码:#include void main(void)int color;for (color = 0; color void main(void)clrscr(); /*

10、清屏函数*/textbackground(2);gotoxy(1, 5); /*定位函数*/cprintf(“Output at row 5 column 1n“);textbackground(3);gotoxy(20, 10);cprintf(“Output at row 10 column 20n“); 题目:练习函数调用_程序源代码:#include void hello_world(void)printf(“Hello, world!n“);void three_hellos(void)int counter;for (counter = 1; counter void main(v

11、oid)int color;for (color = 1; color #include “math.h“#define N 101main()int i,j,line,aN;for(i=2;iaj) min=j;tem=a;a=amin;amin=tem;/*output data*/printf(“After sorted n“);for(i=0;iend)a10=number;elsefor(i=0;inumber)temp1=a;a=number;for(j=i+1;j“);scanf(“%d“,printf(“40:The square for this number is %d n

12、“,SQ(num);if(num=50)again=TRUE;elseagain=FALSE; 题目:宏#define 命令练习(2)_程序源代码:#include “stdio.h“#define exchange(a,b) /*宏定义中允许包含两道衣裳命令的情形,此时必须在最右边加上“*/int t;t=a;a=b;b=t;void main(void)int x=10;int y=20;printf(“x=%d; y=%dn“,x,y);exchange(x,y);printf(“x=%d; y=%dn“,x,y); 题目:宏#define 命令练习(3)_程序源代码:#define L

13、AG #define SMA y)?x:y#define MINIMUM(x,y) (xy)?y:xvoid main() int a=10,b=20;#ifdef MAXprintf(“40: The larger one is %dn“,MAXIMUM(a,b);#elseprintf(“40: The lower one is %dn“,MINIMUM(a,b);#endif#ifndef MINprintf(“40: The lower one is %dn“,MINIMUM(a,b);#elseprintf(“40: The larger one is %dn“,MAXIMUM(a,

14、b);#endif#undef MAX#ifdef MAXprintf(“40: The larger one is %dn“,MAXIMUM(a,b);#elseprintf(“40: The lower one is %dn“,MINIMUM(a,b);#endif#define MIN#ifndef MINprintf(“40: The lower one is %dn“,MINIMUM(a,b);#elseprintf(“40: The larger one is %dn“,MAXIMUM(a,b);#endif 题目:#include 的应用练习_程序源代码:test.h 文件如下:

15、#define LAG #define SMA 4; c=(04);d=bprintf(“%on%on“,a,d); 题目:学习使用按位取反。 _程序分析:0=1; 1=0;_程序源代码:#include “stdio.h“main()int a,b;a=234;b=a;printf(“40: The as 1 complement(decimal) is %d n“,b);a=a;printf(“40: The as 1 complement(hexidecimal) is %x n“,a); 题目:画图,学用 circle 画圆形。_程序源代码:/*circle*/#include “gr

16、aphics.h“main()int driver,mode,i;float j=1,k=1;driver=VGA;mode=VGAHI;initgraph(setbkcolor(YELLOW);for(i=0;i=25;i+)setcolor(8);circle(310,250,k);k=k+j;j=j+0.3; 题目:画图,学用 line 画直线。_程序源代码:#include “graphics.h“main()int driver,mode,i;float x0,y0,y1,x1;float j=12,k;driver=VGA;mode=VGAHI;initgraph(setbkcol

17、or(GREEN);x0=263;y0=263;y1=275;x1=275;for(i=0;i=18;i+)setcolor(5);line(x0,y0,x0,y1);x0=x0-5;y0=y0-5;x1=x1+5;y1=y1+5;j=j+10;x0=263;y1=275;y0=263;for(i=0;i=20;i+)setcolor(5);line(x0,y0,x0,y1);x0=x0+5;y0=y0+5;y1=y1-5; 题目:画图,学用 rectangle 画方形。 _程序分析:利用 for 循环控制 100-999 个数,每个数分解出个位,十位,百位。_程序源代码:#include “

18、graphics.h“main()int x0,y0,y1,x1,driver,mode,i;driver=VGA;mode=VGAHI;initgraph(setbkcolor(YELLOW);x0=263;y0=263;y1=275;x1=275;for(i=0;i=18;i+)setcolor(1);rectangle(x0,y0,x1,y1);x0=x0-5;y0=y0-5;x1=x1+5;y1=y1+5;settextstyle(DEFAULT_FONT,HORIZ_DIR,2);outtextxy(150,40,“How beautiful it is!“);line(130,60,480,60);setcolor(2);circle(269,269,137);

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报