如何创建一个循环检查 1、4 次然后移动到 2,然后检查 4 次,然后移动到 3,然后检查 4 次。
例如:
//Btw, isNextFree is a boolean that returns true or false if the next line is free.
while(linenumber.isNextFree()){
int linenumber=1;
username = line(linenumber,usernamefile);
linenumber+=1;
}
因此,该循环的作用是检查 usernamefile.txt 的行号并将该值存储在哈希图中,我需要检查使用存储在该哈希图中的第一行中的字符串值,以在第 1 行的内容上生成 4 个字符串在用户名文件上与 passwordfile.txt 上的 1 个相同的密码字符串连接。
顺便说一句,我正在使用扫描仪,所以 line 和 linenumber.isNextFree 不存在,它基本上就像扫描仪的 .isNext 一样。