7-8 超速判断


题目:

模拟交通警察的雷达测速仪。输入汽车速度,如果速度超出60 mph,则显示“Speeding”,否则显示“OK”。

输入格式:

输入在一行中给出1个不超过500的非负整数,即雷达测到的车速。

输出格式:

在一行中输出测速仪显示结果,格式为:Speed: V - S,其中V是车速,S或者是Speeding、或者是OK

输入样例1:

40
 

输出样例1:

Speed: 40 - OK
 

输入样例2:

75
 

输出样例2:

Speed: 75 - Speeding

 1 #include
 2 int main(){
 3   int s;         /*s代表速度*/
 4   scanf("%d",&s);
 5   if(60 < s && s <= 500 ){
 6     printf("Speed: %d - Speeding",s);
 7   }
 8   else if(0 <= s && s <= 60)
 9     printf("Speed: %d - OK",s);
10   else
11     printf("Inpurt Error!!!");
12   return 0;
13 }
 

相关