标签:void 数据 ima 学分 学业 i++ 结果 str java
package com.itheima.Demo04.Reader;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class Test {
public static void main(String[] args) throws IOException {
//BufferedReader bf=new BufferedReader(new FileReader("C:\\c.txt"));//读取文件的绝对路径
BufferedReader bf=new BufferedReader(new FileReader("09_IOAndProperties\\g.txt"));//相对路径
String textLine;
String str = "2";
//double [] a=new double[50];//保存读取的文件数据
double b=0.0;//学业分乘以成绩总和
double c=0.0;//学分总和
while((textLine=bf.readLine())!=null){
str+=" "+textLine; //将数据变成一长字符串
}
String[] numbers=str.split(" ");//split 方法:将一个字符串分割为子字符串,然后将结果作为字符串数组返回。
double [] a=new double[numbers.length+1];
for (int i = 1; i < numbers.length; i++) {
a[i-1]=Double.parseDouble(numbers[i]);
//遍历数据 查找错误
/* if (i % 2 == 1) {
System.out.print("学分"+a[i-1]+" ");//数据
}else{
System.out.println("成绩"+a[i-1]);//数据
}*/
}
bf.close();
for(int i=0;i<a.length;i=i+2){
b=b+a[i]*a[i+1];
c=c+a[i];
}
System.out.println("学业分乘以成绩的总和"+b);
System.out.println("学分的总和"+c);
System.out.println("最后的基本分"+b/c*0.8);
}
}
标签:void 数据 ima 学分 学业 i++ 结果 str java
原文地址:https://www.cnblogs.com/lee18/p/11447338.html