偶测试一下手工高亮代码,顺便给你看看我这个菜鸟怎么写的吧
偶写的比你的代码还要长得多,可知我菜到一个什么样的程度了
你要是喜欢嘲笑就嘲笑吧,反正就是发出来给你嘲笑一番的,
的确写的很垃圾吧?我就是这么菜。
不过话说手工进行高亮代码真的很简单,哪一段要变什么颜色就在两边
自己加上color标记就行了(稍学过网页制作的人都知道),
这么简单的东西偶觉得应该让大家发代码前都手工高亮一下嘛。。。
这样对大家都好。
// header file
#include <stdio.h>
// define readonly variable
const char* const ERR_STRING = "您输入的字符有误,请重新";
const char* const INFO_STRING = "*******************************************************";
// will call this function when input have error
void PrintErr(void)
{
printf(ERR_STRING);
while(getchar()!='\n');
}
// get a lower char
char GetLowerChar(const char* str)
{
char c;
puts(str); // output infomation for input
scanf(" %c",&c);
return (c>='A' && c<='Z')?c+32:c;// translate to lower
}
// Get a char choose in a & b.
// other character will make error
int LoopInputChar(const char* str, char a = 'y', char b = 'n')
{
char a1 = GetLowerChar(str);
for(; a1!=a && a1!=b; a1 = GetLowerChar(str+2))
PrintErr();
return a1;
}
// Get a double-type value
double GetDouble(const char* str)
{
double d;
for(puts(str); scanf("%lf",&d)!=1; puts(str+2))
PrintErr();
return d;
}
// stature test
void StatureTest()
{
char c, ys;
double fu,mu,wo,wo2;
fu = GetDouble("请输入您的父亲身高:");
mu = GetDouble("请输入您的母亲身高:");
{
// input gender
c = LoopInputChar("请输入您的性别,男生M,女生F:", 'm', 'f');
if(c == 'm')
wo = (fu+mu)*0.54;
else
wo = (fu*0.923+mu)/2;
wo2 = wo;
}
// input other infomations
c = LoopInputChar("请回答:您平时喜欢锻炼吗?(y/n):");
ys = LoopInputChar("请回答:您平时饮食规律吗?(y/n):");
if(c == 'y') // check the answer and calculate
{
wo2 += wo*0.02;
if(ys =='y') wo2 += wo*0.015;
}
else if(ys =='y')
{
wo2 += wo*0.015;
}
// output
printf("您的未来身高是%.2lf米!\n",wo2);
puts(INFO_STRING);
return ;
}
// main function
int main(void)
{
// output infomation about the test
puts("现在将为您测试一下未来身高,请相信它的科学性!");
puts(INFO_STRING);
do // loop input test
{
StatureTest();
// is exit program
}while(LoopInputChar("请回答:您要退出吗?(y/n):")=='n');
return 0; // must be null
}
[color=#FFFFFF]
[[it] 本帖最后由 雨中飞燕 于 2008-2-3 09:42 编辑 [/it]]