第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Java:從txt文件計(jì)算平均值的問題

Java:從txt文件計(jì)算平均值的問題

慕絲7291255 2022-09-01 18:04:42
大家好,第一個(gè)帖子在這里!我目前有一些問題與我的readfromfile()計(jì)算平均值我的問題是它打印十個(gè)數(shù)字“粘在一起”像12345678910我不明白我如何計(jì)算這樣的平均值,我嘗試了token / 10,它返回0000000000任何建議從這個(gè)混亂中獲得平均值?我嘗試返回帶有%n%s的令牌,這看起來更好,但是當(dāng)我除以10時(shí),它仍然沒有給我一個(gè)正確的數(shù)字,我做錯(cuò)了什么package average;import java.io.FileNotFoundException;import java.io.IOException;import java.nio.file.Paths;import java.util.Formatter;import java.util.InputMismatchException;import java.util.Scanner;public class average {    private static Formatter output;    private static Scanner input;    public static void main(String[] args) {        openFileWrite();        writeToFile();        closeFile();        openFileRead();        readFromFile();        closeFileRead();    }    public static void openFileRead() {      // gets file for "read"        try {            input = new Scanner(Paths.get("Numbers.txt"));        } catch (IOException e) {            System.out.println("Unable to read file");        }    }    public static void openFileWrite() {     // gets file for "write"        try {            output = new Formatter("Numbers.txt");        } catch (FileNotFoundException e) {            System.out.println("Unable to open file");        }    }    public static void readFromFile() {        while (input.hasNextInt()) {            int token = input.nextInt();            System.out.print(token);        }    }    public static void writeToFile() {        Scanner input = new Scanner(System.in);        System.out.println("Enter 10 numbers");        try {            for (int i = 0; i < 10; i++) {                System.out.println("Another Number Please");                int total = input.nextInt();                output.format("%s%n", total);            }        } catch (InputMismatchException e) {            System.out.println("Please do not enter any letters");            writeToFile();        }    }
查看完整描述

1 回答

?
眼眸繁星

TA貢獻(xiàn)1873條經(jīng)驗(yàn) 獲得超9個(gè)贊

只需將你的 readFromFile 方法更改為:-


public static void readFromFile() {

        double average = 0;

        while (input.hasNextInt()) {

            int token = input.nextInt();

            average+=token;

        }

        System.out.println("Average ="+average/10);

}


查看完整回答
反對(duì) 回復(fù) 2022-09-01
  • 1 回答
  • 0 關(guān)注
  • 120 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)