为什么我的程序在输入值后会停止?

时间:2016-03-08 14:16:39

标签: c conio

刚开始用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;
}

由于我刚开始编程,我真的不知道我的代码是否易于被其他人读取。请告诉我一些基本的编码实践。

0 个答案:

没有答案