准备一个文本文件,里面每行写一个数字,读进来,求平均值,java

 我来答
btboy1978
2017-05-11 · TA获得超过2015个赞
知道大有可为答主
回答量:2950
采纳率:57%
帮助的人:978万
展开全部
public class Demo {

public static void main(String[] args) {
File file = new File("D:/demo.txt");


try {
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
String line = null;
int count = 0;
int sum = 0;

while ((line = reader.readLine()) != null) {
System.out.print(line+",");
sum += Integer.valueOf(line.trim());
count++;

}
System.out.println();
System.out.println("总个数为:  " + count + "        总和为:  " + sum + "      平均值为:    " + sum / count);

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
博思aippt
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT... 点击进入详情页
本回答由博思aippt提供
404627263
2017-05-11 · TA获得超过198个赞
知道小有建树答主
回答量:248
采纳率:0%
帮助的人:150万
展开全部
	public static void main(String[] args) throws Exception{
BigDecimal decimal = new BigDecimal(0);
int index = 0;
String path = "d:/remind.txt";
BufferedReader reader = new BufferedReader(new FileReader(path));
String line = "";
while((line = reader.readLine())!=null){
decimal = decimal.add(new BigDecimal(line));
index++;
}
System.out.println(decimal.divide(new BigDecimal(index),2,RoundingMode.HALF_UP));

reader.close();
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式