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

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

# include 
int main(){ int x,y,z,a,b; printf("请输入三个要比较的整数:"); scanf("%d %d %d",&x,&y,&z); if (x>y) { a=x; } else { a=y; } if (a>z) { b=a; } else { b=z; } printf("最大的数为:%d",b); return 0;}
#include 
int main(){ double a,b,c,d; int t,n; printf("请输入行驶里程与等待时间:"); scanf("%lf%d",&a,&t); if (a<=3) c=10; else if(a>3 && a<=10) c=10+2*(a-3); else if(a>10) c=24+3*(a-10); if (t<5) { d=0; } else if(t>=5) { n=t/5; d=n*2; } b=c+d; printf("乘客应支付车费为:%.lf\n",b); return 0;}
 
#include
int main(void) { int n; int i,x; int a=0,b=0,c=0,d=0,e=0; printf("请输入学生数:"); while(scanf("%d",&n)) { for(i=0;i
=90) { a++; } else if(x>=80) { b++; } else if(x>=70) { c++; } else if(x>=60) { 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() { float a,b,c; printf("\n请输入三角行的三边:"); scanf("%f%f%f",&a,&b,&c); if(a>0&&b>0&&c>0) { if((a+b>c)&&(a+c>b)&&(b+c>a)) printf("\n这三边能组成三角形\n"); else printf("\n这三边不能组成三角形\n"); } else printf("输入有误!"); return 0;}
#include
//利用双重循环打三角形 int main(){ int i,j,k; for(j=1;j<=10;j++) { for(k=1;k

 

 
#include
int main(){ int x,y; printf("请输入车速和限速:"); scanf("%d %d",&x,&y); double b=(double)(x-y)*100/y; if (b>50) { printf("超速%.0f%%.吊销驾驶证",b); } if(b>=10&&b<=50) { printf("超速%.0f%%.罚款200",b); } if(b<10) { printf("正常行驶"); } return 0;}

 

转载于:https://www.cnblogs.com/zhuqingh/p/5958594.html

你可能感兴趣的文章
Eclipse中修改代码格式
查看>>
关于 error: LINK1123: failure during conversion to COFF: file invalid or corrupt 错误的解决方案...
查看>>
Linux 进程中 Stop, Park, Freeze【转】
查看>>
PHP盛宴——经常使用函数集锦
查看>>
重写 Ext.form.field 扩展功能
查看>>
Linux下的搜索查找命令的详解(locate)
查看>>
android app启动过程(转)
查看>>
安装gulp及相关插件
查看>>
如何在Linux用chmod来修改所有子目录中的文件属性?
查看>>
高并发环境下,Redisson实现redis分布式锁
查看>>
Hyper-V 2016 系列教程30 机房温度远程监控方案
查看>>
笔记:认识.NET平台
查看>>
cocos2d中CCAnimation的使用(cocos2d 1.0以上版本)
查看>>
【吉光片羽】短信验证
查看>>
gitlab 完整部署实例
查看>>
GNS关于IPS&ASA&PIX&Junos的配置
查看>>
影响企业信息化成败的几点因素
查看>>
SCCM 2016 配置管理系列(Part8)
查看>>
struts中的xwork源码下载地址
查看>>
ABP理论学习之仓储
查看>>