高速公路超速处罚

#include<stdio.h>
main()
{
    float x,y;
    printf("请输入行驶速度和限制速度:\n");
    scanf("%f %f",&x,&y);
    if((x-y)<10*y/100)
    {
        printf("处理结果:OK\n");
    }


else


    {
        printf("处理结果:Exceed 罚款200\n");
        }




}