博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT IO-03 整数均值
阅读量:5442 次
发布时间:2019-06-15

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

1 /* 2 *PAT IO-02 整数四则运算 3 *2015.7.30 4 *作者:flx413 5 */ 6  7 #include
8 int main() 9 {10 int a[4], sum;11 float average;12 scanf("%d%d%d%d", &a[0], &a[1], &a[2], &a[3]);13 sum = a[0] + a[1] + a[2] + a[3];14 average = sum / 4.0;15 printf("Sum = %d; Average = %.1f", sum, average);16 return 0;17 }
 

 

转载于:https://www.cnblogs.com/lzjtdxfxl/p/4690426.html

你可能感兴趣的文章
vim php代码规范
查看>>
numpy次方计算
查看>>
centos7 搭建LNMP
查看>>
Python OOP(1)
查看>>
delphi 数据库中Connection与Query连接数量问题思考
查看>>
JS图像变换效果的实现
查看>>
sql function递归
查看>>
【Alpha】Daily Scrum Meeting——blog2
查看>>
struts2 局部类型转换器
查看>>
all与any的用法
查看>>
SpringBoot入门教程(六)SpringBoot2.0统一处理404,500等http错误跳转页
查看>>
mysql 去除重复 Select中DISTINCT关键字的用法
查看>>
JSON
查看>>
poj1006
查看>>
win7下搭建WAMP图解(PHP运行环境:win7+Apache2.2+php5.2.8+MySQL5.5)附安装包
查看>>
二、什么是IBeamMDAA
查看>>
TC SRM 562 div2 B 题
查看>>
搜索算法
查看>>
LPC1788的spi使用
查看>>
HttpContext.Current.Request.ServerVariables.AllKeys
查看>>