首页 > 代码库 > 分支-08. 高速公路超速处罚

分支-08. 高速公路超速处罚

按照规定,在高速公路上行使的机动车,超出本车道限速的10%则处200元罚款;若超出50%,就要吊销驾驶证。请编写程序根据车速和限速自动判别对该机动车的处理。

输入格式:输入在一行中给出2个正整数,分别对应车速和限速,其间以空格分隔。

输出格式:在一行中输出处理意见:若属于正常行驶,则输出“OK”;若应处罚款,则输出“Exceed x%. Ticket 200”;若应吊销驾驶证,则输出“Exceed x%. License Revoked”。其中x是超速的百分比,精确到整数。

输入样例1:65 60
输出样例1:OK
输入样例2:110 100
输出样例2:Exceed 10%. Ticket 200
输入样例3:200 120
输出样例3:Exceed 67%. License Revoked
import java.util.Scanner;  public class Main {    public static void main(String[] args)    {        Scanner input = new Scanner(System.in);        String inputs = input.nextLine();        String[] a = inputs.split(" ");        int length = a.length;        int b[] = new int[length];         for(int m = 0;m < length;m++)            {                b[m] = Integer.parseInt(a[m]);            }        double x = (b[0] - b[1]) * 100.0 / b[1];        if(x < 10)            {                System.out.print("OK");            }        else            if(x < 50)                {                    System.out.print("Exceed "+Math.round(x)+"%. Ticket 200");                }            else                {                    System.out.print("Exceed "+Math.round(x)+"%. License Revoked");                }       }}

 

分支-08. 高速公路超速处罚