7-8 超速判断(10 分)

7-8 超速判断(10 分)

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

输入格式:

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

输出格式:

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

输入样例1:

1
40

输出样例1:

1
Speed: 40 - OK

输入样例2:

1
75

输出样例2:

1
Speed: 75 - Speeding
1
2
3
4
5
6
7
8
9
10
11
12
#include<stdio.h>
int main()
{
int speed;
scanf("%d",&speed);

if(speed<=60)
printf("Speed: %d - OK",speed);
else
printf("Speed: %d - Speeding",speed);
return 0;
}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×