使用文件的扫描器查找每个其他整数标记
Posted
技术标签:
【中文标题】使用文件的扫描器查找每个其他整数标记【英文标题】:Finding every other integer token using a Scanner for the file 【发布时间】:2022-01-04 22:14:21 【问题描述】:我使用Scanner
作为文件示例,其中包含 4 个男孩和 3 个女孩。每个名字后面都有一个整数(例如Mike 24
),它以一个男孩然后女孩然后男孩然后女孩等等开始。总共有4个男孩和3个女孩,我应该计算男孩和女孩的数量然后将每个男孩的数字加起来,然后女孩的数字相同。另外,当我给男孩分配console.nextInt()
时,它会从文件中获取数字然后分配给男孩变量吗?另外,console.hasNext()
是否有一个索引,如果它读取令牌 #1 那么我可以说console.hasNext() == 1;
?
样本数据:
Erik 3 Rita 7 Tanner 14 Jillyn 13 Curtis 4 Stefanie 12 Ben 6
代码:
import java.util.*;
import java.io.*;
public class Lecture07
public static void main(String[] args) throws FileNotFoundException
System.out.println();
System.out.println("Hello, world!");
// EXERCISES:
// Put your answer for #1 here:
// You will need to add the method in above main(), but then call it here
Scanner console = new Scanner(new File("mydata.txt"));
boyGirl(console);
public static void boyGirl(Scanner console)
int boysCount = 0;
int girlsCount = 0;
while (console.hasNext())
if (console.hasNextInt())
int boys = console.nextInt();
int girls = console.nextInt();
else
console.next();
【问题讨论】:
【参考方案1】:hasNext()
只会返回true
或false
。首先,您不应该在循环中执行int boys = console.nextInt();
,因为它每次都会创建新变量并且数据会丢失。您需要做的是分配int boys = 0;
只需在您的其他2 个变量int boysCount
和int girlsCount
之后分配,int girls = 0
也是如此
接下来你需要这样的东西:
public static void boyGirl(Scanner console)
int boysCount = 0; // here we asigning the variables that we gonna be using
int girlsCount = 0;
int boys = 0;
int girls = 0;
while (console.hasNext()) // check if there is next element, it must be the name
console.next(); // consume the name, we do not want it. or maybe you do up to you
boys += console.nextInt(); // now get to the number and add it to boys
boysCount++; // increment the count by 1 to use later, since we found a boy
if (console.hasNext()) // if statement to see if the boy above, is followed by a girl
console.next(); // do same thing we did to the boy and consume the name
girls += console.nextInt(); // add the number
girlsCount++; // increment girl
现在,在您的 while 循环之后,您可以对变量执行您想要的操作,例如打印它们或其他东西。希望我能有所帮助。
【讨论】:
非常感谢!我已经为此工作了几天,并在 Java 上苦苦挣扎。以上是关于使用文件的扫描器查找每个其他整数标记的主要内容,如果未能解决你的问题,请参考以下文章