1. 程式人生 > >7-21 超速判斷 (10 分)

7-21 超速判斷 (10 分)

模擬交通警察的雷達測速儀。輸入汽車速度,如果速度超出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

 思路:簡單的if語句判斷

#include<stdio.h>
int main()
{
    int s;
    scanf("%d",&s);
    if(s>60)
    {
        printf("Speed: %d - Speeding\n",s);
    }
    else
    {
        printf("Speed: %d - OK\n",s);
    }
return 0;
}