刚开始用 Turbo C++ 编程。为什么这个简单的程序在我输入一个值后不显示附加的 cprintf 函数?
#include <stdio.h>
#include <conio.h>
main()
{
float Speed;
Speed =0;
clrscr();
textcolor(YELLOW);
cprintf("Speed: ");
cscanf("%f",&Speed);
if(Speed>60){
textcolor(RED+BLINK);
cprintf("Overspeeding");
}
else{
textcolor(GREEN+BLINK);
cprintf("Normal Speed");
}
getch();
return 0;
}
由于我刚开始编程,我真的不知道我的代码是否容易被其他人阅读。请告诉我一些基本的编码实践。