今天开始看这本神书了,打算把所有的源代码都敲一遍,一个月看完,时间紧迫,狂看!
发现神书里的源代码只从书写上来看及很有条理,每部之间留出的空隙让整个代码看起来很清晰,也有助于帮助学习者建立一个清晰的算法思路。
举个例子来看:华氏摄氏转换表的源代码
#include<stdio.h>
void main()
{
int fahr,celsius;
int lower,upper,step;
lower=0;
upper=300;
step=20;
printf("华氏 摄氏\n");
fahr=lower;
while(fahr<=upper)
{
celsius=5*(fahr-32)/9;
printf("%d\t%d\n",fahr,celsius);
fahr=fahr+step;
}
}
来源:https://www.cnblogs.com/magcihero/archive/2012/04/21/2461064.html