博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第五次作业160809308周子济
阅读量:5131 次
发布时间:2019-06-13

本文共 1885 字,大约阅读时间需要 6 分钟。

#include 
int main(){ int x=90; int y;//车速 printf("超速的车速:"); scanf("%d",&y); if(y>1.1*x && y<1.5*x) { printf("处罚200元"); } if(y>1.5*x) { printf("吊销执照"); }
#include
int main()//出租车计价{ int s,time,rmb; printf("请输入行驶总里程:"); scanf("%lf",&x); printf("请输入等待时间:"); scanf("%lf",&y); if (time%5==0) { if(s<=0) rmb=(time/5)*2; else if (s<=3) rmb=10+(time/5)*2; else if(s<=10) rmb=10+(s-3)*2+(time/5)*2; else rmb=10+(10-3)*2+(s-10)*3+(time/5)*2; } else { if (s<=0) rmb=(time/5+1)*2; else if (s<=3) rmb=10+(time/5+1)*2; else if(s<=10) rmb=10+(s-3)*2+(time/5+1)*2; else rmb=10+(10-3)*2+(s-10)*3+(time/5+1)*2; } printf("乘客应付%d元\n",rmb); return 0;}
#include
int main (){ int a,b,c,t; printf("输入3个数:"); scanf("%d %d %d",&a,&b,&c); if(a
#include
int main(){ int score,n,i; int a,b,c,d,e; a=b=c=d=e=0; printf("请输入学生个数:\n"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("请输入第%d个学生成绩:\n",i); scanf("%d",&score); if(score>=90) a++; else if(score>=80 && score<90) b++; else if(score>=70 && score<80) c++; else if(score>=60 && score<70) d++; else e++; } printf("A:%d人, B:%d人, C:%d人, D:%d人, E:%d人\n",a,b,c,d,e); return 0;
#include
int main(){ int n=10,i,j; for(i=0;i
#include 
int main(){ int i,A,B,C,D,E,n,s; A=B=C=D=E=0; printf("Enter n:"); scanf("%d",&n); for(i=0;i

 

转载于:https://www.cnblogs.com/xiuyi/p/5958615.html

你可能感兴趣的文章
learning express step(五)
查看>>
推荐2013年最新的10款jquery插件
查看>>
推荐十款来自极客标签的超棒前端特效[第十一期]
查看>>
51nod 1270 数组的最大代价 思路:简单动态规划
查看>>
51 nod 1624 取余最长路 思路:前缀和 + STL(set)二分查找
查看>>
c# linq <未完>
查看>>
模型选择评估方法
查看>>
Beta 冲刺(4/7)
查看>>
Spring 配置相关
查看>>
jQuery中的ajax服务端返回方式详细说明
查看>>
代码整洁之道
查看>>
SpringMvc @RequestMapping原理
查看>>
RHEL 6.3 详细安装教程
查看>>
StringBuilder使用方法
查看>>
Linux Namespace
查看>>
程序员编程10大原则,请牢牢记住
查看>>
堆(Heap)详解——Java实现
查看>>
[原创]IBM AppScan工具培训
查看>>
时间格式转换 json 转 datetime js c#
查看>>
jackson 实体转json 为NULL或者为空不参加序列化
查看>>