收藏 分享(赏)

c语言经典算法.doc

上传人:jinchen 文档编号:6256737 上传时间:2019-04-03 格式:DOC 页数:68 大小:268.50KB
下载 相关 举报
c语言经典算法.doc_第1页
第1页 / 共68页
c语言经典算法.doc_第2页
第2页 / 共68页
c语言经典算法.doc_第3页
第3页 / 共68页
c语言经典算法.doc_第4页
第4页 / 共68页
c语言经典算法.doc_第5页
第5页 / 共68页
点击查看更多>>
资源描述

1、 C (转) C 语言的学习要从基础,100 个经典的算法语言的学习基础,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,重复执行第一步。(3)如果 n 不能被 k

2、 整除,则用 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 scoren“);scanf(“%d

3、“,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 为止*/temp=a%b;a=b;

4、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=aprintf(“请输入要求的数:“)

5、;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“,this); 用牛顿

6、迭代法 求方程 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 Epsilon 1.0E-5

7、 /*控制解的精度*/#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(“please input

8、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 (letter=getc

9、h()=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(); /*清屏函数 */textb

10、ackground(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(void)int col

11、or;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“,SQ(num);i

12、f(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 LAG #define

13、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,b);#endif#u

14、ndef 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 文件如下:#define LAG

15、 #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 “graphics.h“ma

16、in()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(setbkcolor(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);

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

当前位置:首页 > 生活休闲 > 社会民生

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


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

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

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