- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要读取此 .txt 文件的行/将它们存储到数组中,同时忽略 T,仅使用 MaxT
和 MinT
列中的数字在本文中找到 MaxT 和 MinT 的平均值,然后将它们打印到 GUI 的标签上。在阅读这些行并按它们分隔的选项卡将它们分开后,我目前陷入困境。
Day MaxT MinT AvgT Dept HDD CDD Prep NewSnow
1 61 38 49.5 17.8 15 0 0.00 0.0
2 60 33 46.5 14.7 18 0 0.93 0.0
3 60 36 48.0 16.0 17 0 0.80 0.0
4 36 22 29.0 -3.1 36 0 T T
5 43 18 30.5 -1.8 34 0 0.00 0.0
6 47 22 34.5 2.1 30 0 0.00 0.0
7 53 31 42.0 9.4 23 0 0.00 0.0
8 45 23 34.0 1.2 31 0 0.27 2.1
9 24 15 19.5 -13.5 45 0 0.14 2.0
10 18 11 14.5 -18.7 50 0 0.03 0.7
11 25 11 18.0 -15.4 47 0 T T
12 28 18 23.0 -10.6 42 0 0.01 0.2
13 19 10 14.5 -19.3 50 0 T T
14 21 11 16.0 -18.1 49 0 0.17 2.9
15 36 21 28.5 -5.8 36 0 T 0.0
16 38 25 31.5 -3.1 33 0 0.02 0.0
17 36 26 31.0 -3.8 34 0 T T
18 44 27 35.5 0.4 29 0 0.00 0.0
19 66 39 52.5 17.1 12 0 0.00 0.0
20 72 49 60.5 24.9 4 0 0.00 0.0
21 59 41 50.0 14.1 15 0 1.57 0.0
22 50 33 41.5 5.3 23 0 0.00 0.0
23 56 32 44.0 7.5 21 0 0.02 0.0
24 61 33 47.0 10.2 18 0 1.03 T
25 37 32 34.5 -2.6 30 0 0.04 0.5
26 38 31 34.5 -2.9 30 0 T T
27 52 27 39.5 1.7 25 0 0.00 0.0
28 66 42 54.0 15.9 11 0 T 0.0
29 60 38 49.0 10.8 16 0 0.21 0.0
try{
File inputFile = new File("climateDataCincinnati.txt"); //get text
Scanner in = new Scanner(inputFile); //scanner for text
String line = "";
in.nextLine(); //to consume the first row
while(in.hasNextLine()){ //while there is a next line do
line = in.nextLine(); //take line
String content[] = line.split("\t"); // split by tabs
//where to seperate the two columns from the others
}
catch (IOException exception){
System.out.println(exception.toString());
}
最佳答案
只需将您需要的列存储在列表中即可。当您迭代这些值时,您也可以将字符串解析为 Integer。
List<Integer> maxList = new ArrayList<Integer>();
List<Integer> minList = new ArrayList<Integer>();
while(in.hasNextLine()){ //while there is a next line do
line = in.nextLine(); //take line
String content[] = line.split("\t"); // split by tabs
//get the maxT and minT
Integer maxT = Integer.valueOf(content[1]);
Integer minT = Integer.valueOf(content[2]);
//store for future use
maxList.add(maxT);
minList.add(minT);
}
//Do something on your 2 lists to find the average
关于java - 如何使用 split 方法查找 .txt 的 double 的两个特定列的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36322973/
下面的代码有效,我觉得double(double)和double(*)(double)没有区别,square和 &square,我说得对吗? #include double square(doubl
我知道我的作业很草率,这是我在这门课上的第 4 次作业。任何帮助将不胜感激,谢谢。 double getPrincipal(0); double getRate(0); double getYe
我遇到了那个错误,当我使用类时,我在使用函数指针时遇到了这个错误。我的函数'ope'函数我该如何解决 evaluator::function(){ double (*ope) (dou
问题://故事从哪里开始 Graphics 类型中的方法 drawLine(int, int, int, int) 不适用于参数 (double, double, double, double) g.
我有一张 map> m1 形式的 map .我可以将其复制到 map m2 形式的 map 吗?这样键是相同的,并且 m2 中的值是 get(m1->second) 不使用循环?谢谢! 最佳答案 这样
有没有办法获取vector> 的“.first”和“.second”的连续内存? ?我的意思是: void func(int N, double* x, double* y) { for (i
我正在尝试将自定义 lambda 传递给需要函数指针的函数(更准确地说是 zero 中的 Brent library 函数)。 我的想法是,我将使用参数创建一次 lambda,然后用多个值对其求值 x
这是一个很简单的问题,让我很困惑。 我收到一个源文件的以下错误,但另一个没有: 4 src/Source2.cpp:1466: error: no matching function for cal
struct CalculatorBrain { private var accumulator: Double? func changeSign(operand: Double) -
在我正在进行的项目中,我尝试使用 curlpp库来发出一个简单的 html GET 请求。当我将 cpp 文件传递给 g++ 时,出现以下错误: /usr/local/include/curlpp
不使用double就能获得quadruple精度超过16位的数字吗?如果可能的话,这取决于编译器还是其他?因为我知道有人说他使用double精度,并且具有22位精度。 最佳答案 数据类型double
我正在寻找有关特斯拉 GPU 中硬件如何实现 double 的信息。我读到,两个流处理器正在处理单个 double 值,但我没有找到 nvidia 的任何官方论文。 提前致谢。聚苯硫醚为什么大多数 G
这个问题在这里已经有了答案: Passing capturing lambda as function pointer (10 个答案) 关闭 2 年前。 我有这个错误 error: cannot
情况:我有一个元组列表,其中添加了一个元组: List> list = new List>(); list .Add(new Tuple(2.2, 6.6)); 一切似乎都还好。但是......在 D
我有一个 JList,里面有一堆名字,还有一个包含这些名字值的数组 final Double[] filmcost = { 5.00, 5.50, 7.00, 6.00, 5.00 }; 我想做的是,
我试图找出牛顿法来求方程的根。这个错误出来了,我无法处理。 double fn(double n){ return sin(n)+log(n)-1; } double f1n(double n
我有一个 junit 测试断言两个 Double 对象,具有以下内容: Assert.assertEquals(Double expected, Double result); 这很好,然后我决定将其
我正在尝试引入部分数据文件来填充数组,用户尝试了三次输入正确的数据文件名。我一再遇到这些错误。我知道像 arr 这样的数组只是一个指向内存块的指针。 #include #include #incl
我正在尝试完成复习题(为即将到来的编程决赛),但是,我无法解决这个问题,因为我不断收到错误(标题)。正如预期的那样,我将发布问题和我尝试的解决方案。 问题: 给定以下函数定义:void swap(do
任何人都知道如何实现这一目标。我已经尝试了通常的公式,但我只得到正数 Double.NEGATIVE_INFINITY) return d; } } 这将以相同的概率
我是一名优秀的程序员,十分优秀!