浙大版《C语言程序设计(第3版)》题目集 习题3-2 高速公路超速处罚

2020-09-15 11:04:57 浏览数 (1)

习题3-2 高速公路超速处罚

按照规定,在高速公路上行使的机动车,达到或超出本车道限速的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

代码:

#include<stdio.h> int main() { int m; //车速 int n; //限速 scanf("%d %d",&m,&n); int t1=n n0.1; int t2=n n0.5; // printf("%d %dn",t1,t2); if(m<t1) printf(“OKn”); if(m>=t1&&m<t2) { double temp1=(m-n)/(double)n100.0; double temp2=temp1-(int)temp1; int temp; if(temp2>=0.5) temp=(int)temp1 1; else temp=(int)temp1; printf(“Exceed %d%%. Ticket 200n”,temp); } if(m>=t2) { double temp1=(m-n)/(double)n100.0; double temp2=temp1-(int)temp1; int temp; if(temp2>=0.5) temp=(int)temp1 1; else temp=(int)temp1; printf(“Exceed %d%%. License Revokedn”,temp); } }

0 人点赞