首页 > 代码库 > 分支-08. 高速公路超速处罚
分支-08. 高速公路超速处罚
1 /* 2 *B8-分支-08. 高速公路超速处罚(15) 3 * Main.c 4 * Created on: 2014年5月28日 5 * Author: Boomkeeper 6 */ 7 8 #include <stdio.h> 9 #include <stdlib.h>10 11 int main()12 {13 int speed,topspeed;14 int *ps=&speed;15 int *pt=&topspeed;16 17 scanf("%i %i",&speed,&topspeed);18 19 if(*ps<0 || *pt<0)20 exit(0);21 22 int overtoppercent=(int)(((double)(speed-topspeed)/topspeed)*100+0.5);//计算超速百分比,只保留整数23 24 if(overtoppercent<10)25 {26 printf("OK\n");27 }28 29 if(overtoppercent<50 && overtoppercent>=10)30 {31 printf("Exceed %i%%. Ticket 200\n",overtoppercent);32 }33 34 if(overtoppercent>=50)35 {36 printf("Exceed %i%%. License Revoked\n",overtoppercent);37 }38 39 return 0;40 }
测试通过
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。